-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathnode-nodejs-basics.json
More file actions
161 lines (161 loc) · 3.56 KB
/
Copy pathnode-nodejs-basics.json
File metadata and controls
161 lines (161 loc) · 3.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"taskName": "Node.js basics Q4-2022",
"github": "https://github.com/AlreadyBored/nodejs-assignments/blob/main/assignments/nodejs-basics/assignment.md",
"information": "Scoring: Node.js basics",
"criteria": [
{
"type": "title",
"title": "For check simplification you have npm-scripts in \"package.json.\"\nNB! Some scripts have predefined data (e.g. environment variables, CLI arguments). Feel free to change it during the check if necessary.\n\nMax score: 206"
},
{
"type": "title",
"title": "File system (src/fs)"
},
{
"type": "subtask",
"text": "`create.js` implemented properly",
"max": 6
},
{
"type": "subtask",
"text": "`copy.js` implemented properly",
"max": 10
},
{
"type": "subtask",
"text": "`rename.js` implemented properly",
"max": 10
},
{
"type": "subtask",
"text": "`delete.js` implemented properly",
"max": 6
},
{
"type": "subtask",
"text": "`list.js` implemented properly",
"max": 6
},
{
"type": "subtask",
"text": "`read.js` implemented properly",
"max": 6
},
{
"type": "title",
"title": "Command line interface(src/cli)"
},
{
"type": "subtask",
"text": "`env.js` implemented properly",
"max": 6
},
{
"type": "subtask",
"text": "`args.js` implemented properly",
"max": 6
},
{
"type": "title",
"title": "Modules(src/modules)"
},
{
"type": "subtask",
"text": "`cjsToEsm.cjs` refactored properly",
"max": 20
},
{
"type": "title",
"title": "Hash (src/hash)"
},
{
"type": "subtask",
"text": "`calcHash.js` implemented properly",
"max": 10
},
{
"type": "title",
"title": "Streams (src/streams)"
},
{
"type": "subtask",
"text": "`read.js` implemented properly",
"max": 10
},
{
"type": "subtask",
"text": "`write.js` implemented properly",
"max": 10
},
{
"type": "subtask",
"text": "`transform.js` implemented properly",
"max": 10
},
{
"type": "title",
"title": "Zlib (src/zip)"
},
{
"type": "subtask",
"text": "`compress.js` implemented properly",
"max": 10
},
{
"type": "subtask",
"text": "`decompress.js` implemented properly",
"max": 10
},
{
"type": "title",
"title": "Advanced Scope"
},
{
"type": "title",
"title": "Worker Threads (src/wt)"
},
{
"type": "subtask",
"text": "`worker.js` implemented properly",
"max": 10
},
{
"type": "subtask",
"text": "`main.js` implemented properly",
"max": 30
},
{
"type": "title",
"title": "Child Processes (src/cp)"
},
{
"type": "subtask",
"text": "spawns child process",
"max": 10
},
{
"type": "subtask",
"text": "child process `stdin` receives input from master process `stdin`",
"max": 10
},
{
"type": "subtask",
"text": "child process `stdout` sends data to master process `stdout`",
"max": 10
},
{
"type": "title",
"title": "Forfeits"
},
{
"type": "penalty",
"text": "Any external tools/libraries are used",
"max": "-95%"
},
{
"type": "penalty",
"text": "Commits after deadline (except commits that affect only Readme.md, .gitignore, etc.)",
"max": "-30%"
}
]
}