FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Merge pull request #5 from alSergey/sergey-lab3 · GrAnD14/JavaScript@4d681c1 · GitHub

Commit 4d681c1

Browse files
authored
Merge pull request iu5git#5 from alSergey/sergey-lab3
init lab3
2 parents 878b889 + fcd6657 commit 4d681c1

23 files changed

Lines changed: 1836 additions & 8 deletions

File tree

‎README.md‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,30 +32,30 @@ Event Loop, промисы, async/await, fetch
3232
* **Лекция 6. Бэкенд на JavaScript**
3333

3434
Node.js. Бэкенд на JavaScript
35-
Кеширование и проксирование на Node.js
3635

3736
* **Лекция 7. Web реального времени**
3837

3938
HTTP/2, Polling, WebSocket
4039

4140
### Модуль 1
4241

43-
#### Лабораторная работа 1.
42+
#### Лабораторная работа 1
4443

4544
Создание калькулятора: верстка на HTML, CSS. LiveServer. Добавить кнопки по варианту.
4645

47-
* [Методические указания ](/tutorials/calculator/Calculator-JS.md)
46+
* [Методические указания](/tutorials/calculator/Calculator-JS.md)
4847

49-
#### Лабораторная работа 2.
48+
#### Лабораторная работа 2
5049

5150
Создание калькулятора: функции на JS. По вариантам реализовать различные функции калькулятора: log, sin, накопление итога и тд
5251

53-
* [Методические указания ](/tutorials/calculator/Calculator_part2.md)
52+
* [Методические указания](/tutorials/calculator/Calculator_part2.md)
5453

55-
#### Лабораторная работа 3.
56-
Создание проекта через npm, сервер express. Верстка интерфейса с карточками, данные через mock объекты.
54+
#### Лабораторная работа 3
5755

58-
* [Методические указания](/tutorials/lab7/lab7_tutorial.md) к 3-4 лабораторным
56+
Знакомство с node, npm. Верстка интерфейса с карточками, данные через mock объекты.
57+
58+
* [Методические указания](/tutorials/front/front.md)
5959

6060
#### Домашнее задание
6161

‎tutorials/front/assets/.gitignore‎

Lines changed: 351 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,351 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/macos,windows,linux,webstorm+all,visualstudiocode,xcode,node
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,linux,webstorm+all,visualstudiocode,xcode,node
4+
5+
### Linux ###
6+
*~
7+
8+
# temporary files which can be created if a process still has a handle open of a deleted file
9+
.fuse_hidden*
10+
11+
# KDE directory preferences
12+
.directory
13+
14+
# Linux trash folder which might appear on any partition or disk
15+
.Trash-*
16+
17+
# .nfs files are created when an open file is removed but is still being accessed
18+
.nfs*
19+
20+
### macOS ###
21+
# General
22+
.DS_Store
23+
.AppleDouble
24+
.LSOverride
25+
26+
# Icon must end with two \r
27+
Icon
28+
29+
# Thumbnails
30+
._*
31+
32+
# Files that might appear in the root of a volume
33+
.DocumentRevisions-V100
34+
.fseventsd
35+
.Spotlight-V100
36+
.TemporaryItems
37+
.Trashes
38+
.VolumeIcon.icns
39+
.com.apple.timemachine.donotpresent
40+
41+
# Directories potentially created on remote AFP share
42+
.AppleDB
43+
.AppleDesktop
44+
Network Trash Folder
45+
Temporary Items
46+
.apdisk
47+
48+
### Node ###
49+
# Logs
50+
logs
51+
*.log
52+
npm-debug.log*
53+
yarn-debug.log*
54+
yarn-error.log*
55+
lerna-debug.log*
56+
.pnpm-debug.log*
57+
58+
# Diagnostic reports (https://nodejs.org/api/report.html)
59+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
60+
61+
# Runtime data
62+
pids
63+
*.pid
64+
*.seed
65+
*.pid.lock
66+
67+
# Directory for instrumented libs generated by jscoverage/JSCover
68+
lib-cov
69+
70+
# Coverage directory used by tools like istanbul
71+
coverage
72+
*.lcov
73+
74+
# nyc test coverage
75+
.nyc_output
76+
77+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
78+
.grunt
79+
80+
# Bower dependency directory (https://bower.io/)
81+
bower_components
82+
83+
# node-waf configuration
84+
.lock-wscript
85+
86+
# Compiled binary addons (https://nodejs.org/api/addons.html)
87+
build/Release
88+
89+
# Dependency directories
90+
node_modules/
91+
jspm_packages/
92+
93+
# Snowpack dependency directory (https://snowpack.dev/)
94+
web_modules/
95+
96+
# TypeScript cache
97+
*.tsbuildinfo
98+
99+
# Optional npm cache directory
100+
.npm
101+
102+
# Optional eslint cache
103+
.eslintcache
104+
105+
# Microbundle cache
106+
.rpt2_cache/
107+
.rts2_cache_cjs/
108+
.rts2_cache_es/
109+
.rts2_cache_umd/
110+
111+
# Optional REPL history
112+
.node_repl_history
113+
114+
# Output of 'npm pack'
115+
*.tgz
116+
117+
# Yarn Integrity file
118+
.yarn-integrity
119+
120+
# dotenv environment variables file
121+
.env
122+
.env.test
123+
.env.production
124+
125+
# parcel-bundler cache (https://parceljs.org/)
126+
.cache
127+
.parcel-cache
128+
129+
# Next.js build output
130+
.next
131+
out
132+
133+
# Nuxt.js build / generate output
134+
.nuxt
135+
dist
136+
137+
# Gatsby files
138+
.cache/
139+
# Comment in the public line in if your project uses Gatsby and not Next.js
140+
# https://nextjs.org/blog/next-9-1#public-directory-support
141+
# public
142+
143+
# vuepress build output
144+
.vuepress/dist
145+
146+
# Serverless directories
147+
.serverless/
148+
149+
# FuseBox cache
150+
.fusebox/
151+
152+
# DynamoDB Local files
153+
.dynamodb/
154+
155+
# TernJS port file
156+
.tern-port
157+
158+
# Stores VSCode versions used for testing VSCode extensions
159+
.vscode-test
160+
161+
# yarn v2
162+
.yarn/cache
163+
.yarn/unplugged
164+
.yarn/build-state.yml
165+
.yarn/install-state.gz
166+
.pnp.*
167+
168+
### Node Patch ###
169+
# Serverless Webpack directories
170+
.webpack/
171+
172+
# Optional stylelint cache
173+
.stylelintcache
174+
175+
# SvelteKit build / generate output
176+
.svelte-kit
177+
178+
### VisualStudioCode ###
179+
.vscode/*
180+
!.vscode/settings.json
181+
!.vscode/tasks.json
182+
!.vscode/launch.json
183+
!.vscode/extensions.json
184+
*.code-workspace
185+
186+
# Local History for Visual Studio Code
187+
.history/
188+
189+
### VisualStudioCode Patch ###
190+
# Ignore all local history of files
191+
.history
192+
.ionide
193+
194+
# Support for Project snippet scope
195+
!.vscode/*.code-snippets
196+
197+
### WebStorm+all ###
198+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
199+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
200+
201+
# User-specific stuff
202+
.idea/**/workspace.xml
203+
.idea/**/tasks.xml
204+
.idea/**/usage.statistics.xml
205+
.idea/**/dictionaries
206+
.idea/**/shelf
207+
208+
# AWS User-specific
209+
.idea/**/aws.xml
210+
211+
# Generated files
212+
.idea/**/contentModel.xml
213+
214+
# Sensitive or high-churn files
215+
.idea/**/dataSources/
216+
.idea/**/dataSources.ids
217+
.idea/**/dataSources.local.xml
218+
.idea/**/sqlDataSources.xml
219+
.idea/**/dynamic.xml
220+
.idea/**/uiDesigner.xml
221+
.idea/**/dbnavigator.xml
222+
223+
# Gradle
224+
.idea/**/gradle.xml
225+
.idea/**/libraries
226+
227+
# Gradle and Maven with auto-import
228+
# When using Gradle or Maven with auto-import, you should exclude module files,
229+
# since they will be recreated, and may cause churn. Uncomment if using
230+
# auto-import.
231+
# .idea/artifacts
232+
# .idea/compiler.xml
233+
# .idea/jarRepositories.xml
234+
# .idea/modules.xml
235+
# .idea/*.iml
236+
# .idea/modules
237+
# *.iml
238+
# *.ipr
239+
240+
# CMake
241+
cmake-build-*/
242+
243+
# Mongo Explorer plugin
244+
.idea/**/mongoSettings.xml
245+
246+
# File-based project format
247+
*.iws
248+
249+
# IntelliJ
250+
out/
251+
252+
# mpeltonen/sbt-idea plugin
253+
.idea_modules/
254+
255+
# JIRA plugin
256+
atlassian-ide-plugin.xml
257+
258+
# Cursive Clojure plugin
259+
.idea/replstate.xml
260+
261+
# Crashlytics plugin (for Android Studio and IntelliJ)
262+
com_crashlytics_export_strings.xml
263+
crashlytics.properties
264+
crashlytics-build.properties
265+
fabric.properties
266+
267+
# Editor-based Rest Client
268+
.idea/httpRequests
269+
270+
# Android studio 3.1+ serialized cache file
271+
.idea/caches/build_file_checksums.ser
272+
273+
### WebStorm+all Patch ###
274+
# Ignores the whole .idea folder and all .iml files
275+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
276+
277+
.idea/
278+
279+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
280+
281+
*.iml
282+
modules.xml
283+
.idea/misc.xml
284+
*.ipr
285+
286+
# Sonarlint plugin
287+
.idea/sonarlint
288+
289+
### Windows ###
290+
# Windows thumbnail cache files
291+
Thumbs.db
292+
Thumbs.db:encryptable
293+
ehthumbs.db
294+
ehthumbs_vista.db
295+
296+
# Dump file
297+
*.stackdump
298+
299+
# Folder config file
300+
[Dd]esktop.ini
301+
302+
# Recycle Bin used on file shares
303+
$RECYCLE.BIN/
304+
305+
# Windows Installer files
306+
*.cab
307+
*.msi
308+
*.msix
309+
*.msm
310+
*.msp
311+
312+
# Windows shortcuts
313+
*.lnk
314+
315+
### Xcode ###
316+
# Xcode
317+
#
318+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
319+
320+
## User settings
321+
xcuserdata/
322+
323+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
324+
*.xcscmblueprint
325+
*.xccheckout
326+
327+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
328+
build/
329+
DerivedData/
330+
*.moved-aside
331+
*.pbxuser
332+
!default.pbxuser
333+
*.mode1v3
334+
!default.mode1v3
335+
*.mode2v3
336+
!default.mode2v3
337+
*.perspectivev3
338+
!default.perspectivev3
339+
340+
## Gcc Patch
341+
/*.gcno
342+
343+
### Xcode Patch ###
344+
*.xcodeproj/*
345+
!*.xcodeproj/project.pbxproj
346+
!*.xcodeproj/xcshareddata/
347+
!*.xcworkspace/contents.xcworkspacedata
348+
**/xcshareddata/WorkspaceSettings.xcsettings
349+
350+
# End of https://www.toptal.com/developers/gitignore/api/macos,windows,linux,webstorm+all,visualstudiocode,xcode,node
351+
90.8 KB
LoadingViewer requires iframe.
290 KB
LoadingViewer requires iframe.
90.8 KB
LoadingViewer requires iframe.
91.1 KB
LoadingViewer requires iframe.
91.2 KB
LoadingViewer requires iframe.
90.9 KB
LoadingViewer requires iframe.
596 KB
LoadingViewer requires iframe.
591 KB
LoadingViewer requires iframe.

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL