Difference between revisions of "IT-SDK-Node.js"
Jump to navigation
Jump to search
Samerhijazi (talk | contribs) (Created page with "=Ref= * https://nodeschool.io/ * https://training.linuxfoundation.org/certification/jsnad/ * https://training.linuxfoundation.org/certification/jsnsd/ * https://www.youtube.co...") |
Samerhijazi (talk | contribs) |
||
| Line 5: | Line 5: | ||
* https://www.youtube.com/watch?v=11i-NRW-9PY | * https://www.youtube.com/watch?v=11i-NRW-9PY | ||
* https://goodfirstissue.dev/ | * https://goodfirstissue.dev/ | ||
| + | =Coll= | ||
| + | <pre class="code"> | ||
| + | https://nodejs.org/dist/latest-v14.x/docs/api/ | ||
| + | const { execSync } = require('child_process') | ||
| + | const { appendFile } = require('fs') | ||
| + | const { appendFile } = require('fs').promises | ||
| + | |||
| + | "dependencies": { | ||
| + | "chalk": "git://github.com/chalk/chalk.git#v3.0.0-beta.2" | ||
| + | "fastify": "^3.0.0", | ||
| + | "fastify-autoload": "^3.3.1", | ||
| + | "fastify-cli": "^2.7.0", | ||
| + | "fastify-plugin": "^3.0.0", | ||
| + | "fastify-sensible": "^3.1.0" | ||
| + | } | ||
| + | </pre> | ||
Revision as of 09:58, 19 May 2021
Ref
- https://nodeschool.io/
- https://training.linuxfoundation.org/certification/jsnad/
- https://training.linuxfoundation.org/certification/jsnsd/
- https://www.youtube.com/watch?v=11i-NRW-9PY
- https://goodfirstissue.dev/
Coll
https://nodejs.org/dist/latest-v14.x/docs/api/
const { execSync } = require('child_process')
const { appendFile } = require('fs')
const { appendFile } = require('fs').promises
"dependencies": {
"chalk": "git://github.com/chalk/chalk.git#v3.0.0-beta.2"
"fastify": "^3.0.0",
"fastify-autoload": "^3.3.1",
"fastify-cli": "^2.7.0",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.0"
}