├── .gitignore ├── async-js ├── async-await-promise.js ├── async-for-await-promise-all.js ├── async-promise.js ├── async.js ├── index.html └── sync.js ├── functions ├── index.html ├── script.js └── sync.js ├── lesson-3 ├── demo.html └── demo.js ├── mongos ├── app1 │ ├── index.js │ ├── package-lock.json │ └── package.json └── exapp1 │ ├── app.js │ ├── constant.js │ ├── mongo.js │ ├── notes.txt │ ├── package-lock.json │ ├── package.json │ ├── populate.js │ ├── server.js │ ├── student.model.js │ ├── student.request.js │ ├── student.schema.js │ ├── students.controller.js │ └── students.service.js ├── nodes ├── builtinmodules │ ├── cpus.js │ ├── events.js │ ├── file1.txt │ ├── files.js │ ├── stream.js │ ├── stream2.js │ └── streams │ │ └── output.txt ├── express │ ├── package-lock.json │ ├── package.json │ └── server.js ├── http-requests │ ├── index.js │ ├── package-lock.json │ └── package.json ├── requests.http └── servers │ └── node-http.js └── practices ├── 01 ├── index.html └── index.js ├── 02 ├── index.html └── index.js └── 03 ├── index.js └── problems.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /async-js/async-await-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/async-js/async-await-promise.js -------------------------------------------------------------------------------- /async-js/async-for-await-promise-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/async-js/async-for-await-promise-all.js -------------------------------------------------------------------------------- /async-js/async-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/async-js/async-promise.js -------------------------------------------------------------------------------- /async-js/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/async-js/async.js -------------------------------------------------------------------------------- /async-js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/async-js/index.html -------------------------------------------------------------------------------- /async-js/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/async-js/sync.js -------------------------------------------------------------------------------- /functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/functions/index.html -------------------------------------------------------------------------------- /functions/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/functions/script.js -------------------------------------------------------------------------------- /functions/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/functions/sync.js -------------------------------------------------------------------------------- /lesson-3/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/lesson-3/demo.html -------------------------------------------------------------------------------- /lesson-3/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/lesson-3/demo.js -------------------------------------------------------------------------------- /mongos/app1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/app1/index.js -------------------------------------------------------------------------------- /mongos/app1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/app1/package-lock.json -------------------------------------------------------------------------------- /mongos/app1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/app1/package.json -------------------------------------------------------------------------------- /mongos/exapp1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/app.js -------------------------------------------------------------------------------- /mongos/exapp1/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/constant.js -------------------------------------------------------------------------------- /mongos/exapp1/mongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/mongo.js -------------------------------------------------------------------------------- /mongos/exapp1/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/notes.txt -------------------------------------------------------------------------------- /mongos/exapp1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/package-lock.json -------------------------------------------------------------------------------- /mongos/exapp1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/package.json -------------------------------------------------------------------------------- /mongos/exapp1/populate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/populate.js -------------------------------------------------------------------------------- /mongos/exapp1/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/server.js -------------------------------------------------------------------------------- /mongos/exapp1/student.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/student.model.js -------------------------------------------------------------------------------- /mongos/exapp1/student.request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/student.request.js -------------------------------------------------------------------------------- /mongos/exapp1/student.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/student.schema.js -------------------------------------------------------------------------------- /mongos/exapp1/students.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/students.controller.js -------------------------------------------------------------------------------- /mongos/exapp1/students.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/mongos/exapp1/students.service.js -------------------------------------------------------------------------------- /nodes/builtinmodules/cpus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/builtinmodules/cpus.js -------------------------------------------------------------------------------- /nodes/builtinmodules/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/builtinmodules/events.js -------------------------------------------------------------------------------- /nodes/builtinmodules/file1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/builtinmodules/file1.txt -------------------------------------------------------------------------------- /nodes/builtinmodules/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/builtinmodules/files.js -------------------------------------------------------------------------------- /nodes/builtinmodules/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/builtinmodules/stream.js -------------------------------------------------------------------------------- /nodes/builtinmodules/stream2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/builtinmodules/stream2.js -------------------------------------------------------------------------------- /nodes/builtinmodules/streams/output.txt: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | -------------------------------------------------------------------------------- /nodes/express/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/express/package-lock.json -------------------------------------------------------------------------------- /nodes/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/express/package.json -------------------------------------------------------------------------------- /nodes/express/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/express/server.js -------------------------------------------------------------------------------- /nodes/http-requests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/http-requests/index.js -------------------------------------------------------------------------------- /nodes/http-requests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/http-requests/package-lock.json -------------------------------------------------------------------------------- /nodes/http-requests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/http-requests/package.json -------------------------------------------------------------------------------- /nodes/requests.http: -------------------------------------------------------------------------------- 1 | GET https://jsonplaceholder.typicode.com/posts -------------------------------------------------------------------------------- /nodes/servers/node-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/nodes/servers/node-http.js -------------------------------------------------------------------------------- /practices/01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/practices/01/index.html -------------------------------------------------------------------------------- /practices/01/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/practices/01/index.js -------------------------------------------------------------------------------- /practices/02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/practices/02/index.html -------------------------------------------------------------------------------- /practices/02/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/practices/02/index.js -------------------------------------------------------------------------------- /practices/03/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/practices/03/index.js -------------------------------------------------------------------------------- /practices/03/problems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foyzulkarim/learn-mern/HEAD/practices/03/problems.txt --------------------------------------------------------------------------------