├── .gitignore ├── README.md └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Nodejs_Crash_Course 2 | This is Nodejs Crash Course 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nodejs-crash-course", 3 | "version": "1.0.0", 4 | "description": "This is nodejs crash course for beginners", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/dmalvia/Nodejs_Crash_Course.git" 12 | }, 13 | "author": "Dipesh Malvia", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/dmalvia/Nodejs_Crash_Course/issues" 17 | }, 18 | "homepage": "https://github.com/dmalvia/Nodejs_Crash_Course#readme" 19 | } 20 | --------------------------------------------------------------------------------