├── .jshintrc ├── CONTRIBUTING.md ├── README.md ├── _config.yml ├── assets ├── NASA.mp4 ├── event-loop.png ├── express-mw.png ├── file.json ├── monolithic-and-microservices-architecture.jpg ├── node-js-jwt-authentication-mysql-project-structure.png ├── reactor-pattern.jpg ├── star.png ├── temp.txt ├── test.txt └── testPyramid.png ├── exec.js ├── fs-module.js ├── global-objects.js ├── jwt-asymmetric-cryptography-authentication ├── .gitignore ├── README.md ├── authServer.js ├── certs │ ├── accessTokenPrivateKey.pem │ ├── accessTokenPubliKey.pem │ ├── refreshTokenPrivateKey.pem │ └── refreshTokenPubliKey.pem ├── example.env ├── package-lock.json ├── package.json ├── requests.rest └── server.js ├── jwt-authentication ├── .gitignore ├── README.md ├── authServer.js ├── example.env ├── package-lock.json ├── package.json ├── requests.rest └── server.js ├── miscellaneous.js ├── node-jwt-mysql-auth ├── .gitignore ├── README.md ├── app │ ├── config │ │ ├── auth.config.js │ │ ├── db.config.js │ │ └── testdb.sql │ ├── controllers │ │ ├── auth.controller.js │ │ └── user.controller.js │ ├── middleware │ │ ├── authJwt.js │ │ ├── index.js │ │ └── verifySignUp.js │ ├── models │ │ ├── index.js │ │ ├── role.model.js │ │ └── user.model.js │ └── routes │ │ ├── auth.routes.js │ │ └── user.routes.js ├── package.json ├── requests.rest └── server.js ├── nodejs-api.md ├── nodejs-basics ├── .gitignore ├── assert.js ├── buffer.js ├── callback.js ├── child-process-support.js ├── child-process.js ├── console.js ├── create_directory.bat ├── crypto.js ├── debugger.js ├── dns.js ├── event.js ├── exception.js ├── global-objects.js ├── index.html ├── input.txt ├── net-client.js ├── net-server.js ├── os.js ├── output.txt ├── package-lock.json ├── path.js ├── process.js ├── querystring.js ├── server.js ├── stream.js ├── string-decoder.js ├── timmer.js ├── tls.js ├── v8.js ├── web-module.js └── zlib.js ├── nodejs-commands.md ├── nodejs-mysql ├── .gitignore ├── alter-table.js ├── config.js ├── create-db.js ├── create-table.js ├── delete-record.js ├── insert-record.js ├── package-lock.json ├── select-record.js └── update-record.js ├── nodejs-programming.md ├── play-video.js └── standard-input-output.js /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 6 3 | } 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/NASA.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/assets/NASA.mp4 -------------------------------------------------------------------------------- /assets/event-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/assets/event-loop.png -------------------------------------------------------------------------------- /assets/express-mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/assets/express-mw.png -------------------------------------------------------------------------------- /assets/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/assets/file.json -------------------------------------------------------------------------------- /assets/monolithic-and-microservices-architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/assets/monolithic-and-microservices-architecture.jpg -------------------------------------------------------------------------------- /assets/node-js-jwt-authentication-mysql-project-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/assets/node-js-jwt-authentication-mysql-project-structure.png -------------------------------------------------------------------------------- /assets/reactor-pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/assets/reactor-pattern.jpg -------------------------------------------------------------------------------- /assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/assets/star.png -------------------------------------------------------------------------------- /assets/temp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/assets/temp.txt -------------------------------------------------------------------------------- /assets/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/assets/test.txt -------------------------------------------------------------------------------- /assets/testPyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/assets/testPyramid.png -------------------------------------------------------------------------------- /exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/exec.js -------------------------------------------------------------------------------- /fs-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/fs-module.js -------------------------------------------------------------------------------- /global-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/global-objects.js -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-asymmetric-cryptography-authentication/README.md -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/authServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-asymmetric-cryptography-authentication/authServer.js -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/certs/accessTokenPrivateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-asymmetric-cryptography-authentication/certs/accessTokenPrivateKey.pem -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/certs/accessTokenPubliKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-asymmetric-cryptography-authentication/certs/accessTokenPubliKey.pem -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/certs/refreshTokenPrivateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-asymmetric-cryptography-authentication/certs/refreshTokenPrivateKey.pem -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/certs/refreshTokenPubliKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-asymmetric-cryptography-authentication/certs/refreshTokenPubliKey.pem -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-asymmetric-cryptography-authentication/example.env -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-asymmetric-cryptography-authentication/package-lock.json -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-asymmetric-cryptography-authentication/package.json -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/requests.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-asymmetric-cryptography-authentication/requests.rest -------------------------------------------------------------------------------- /jwt-asymmetric-cryptography-authentication/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-asymmetric-cryptography-authentication/server.js -------------------------------------------------------------------------------- /jwt-authentication/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | -------------------------------------------------------------------------------- /jwt-authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-authentication/README.md -------------------------------------------------------------------------------- /jwt-authentication/authServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-authentication/authServer.js -------------------------------------------------------------------------------- /jwt-authentication/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-authentication/example.env -------------------------------------------------------------------------------- /jwt-authentication/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-authentication/package-lock.json -------------------------------------------------------------------------------- /jwt-authentication/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-authentication/package.json -------------------------------------------------------------------------------- /jwt-authentication/requests.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-authentication/requests.rest -------------------------------------------------------------------------------- /jwt-authentication/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/jwt-authentication/server.js -------------------------------------------------------------------------------- /miscellaneous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/miscellaneous.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /node-jwt-mysql-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/README.md -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/config/auth.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/config/auth.config.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/config/db.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/config/db.config.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/config/testdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/config/testdb.sql -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/controllers/auth.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/controllers/auth.controller.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/controllers/user.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/controllers/user.controller.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/middleware/authJwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/middleware/authJwt.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/middleware/index.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/middleware/verifySignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/middleware/verifySignUp.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/models/index.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/models/role.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/models/role.model.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/models/user.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/models/user.model.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/routes/auth.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/routes/auth.routes.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/app/routes/user.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/app/routes/user.routes.js -------------------------------------------------------------------------------- /node-jwt-mysql-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/package.json -------------------------------------------------------------------------------- /node-jwt-mysql-auth/requests.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/requests.rest -------------------------------------------------------------------------------- /node-jwt-mysql-auth/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/node-jwt-mysql-auth/server.js -------------------------------------------------------------------------------- /nodejs-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-api.md -------------------------------------------------------------------------------- /nodejs-basics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/.gitignore -------------------------------------------------------------------------------- /nodejs-basics/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/assert.js -------------------------------------------------------------------------------- /nodejs-basics/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/buffer.js -------------------------------------------------------------------------------- /nodejs-basics/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/callback.js -------------------------------------------------------------------------------- /nodejs-basics/child-process-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/child-process-support.js -------------------------------------------------------------------------------- /nodejs-basics/child-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/child-process.js -------------------------------------------------------------------------------- /nodejs-basics/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/console.js -------------------------------------------------------------------------------- /nodejs-basics/create_directory.bat: -------------------------------------------------------------------------------- 1 | dir 2 | mkdir child -------------------------------------------------------------------------------- /nodejs-basics/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/crypto.js -------------------------------------------------------------------------------- /nodejs-basics/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/debugger.js -------------------------------------------------------------------------------- /nodejs-basics/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/dns.js -------------------------------------------------------------------------------- /nodejs-basics/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/event.js -------------------------------------------------------------------------------- /nodejs-basics/exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/exception.js -------------------------------------------------------------------------------- /nodejs-basics/global-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/global-objects.js -------------------------------------------------------------------------------- /nodejs-basics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/index.html -------------------------------------------------------------------------------- /nodejs-basics/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/input.txt -------------------------------------------------------------------------------- /nodejs-basics/net-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/net-client.js -------------------------------------------------------------------------------- /nodejs-basics/net-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/net-server.js -------------------------------------------------------------------------------- /nodejs-basics/os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/os.js -------------------------------------------------------------------------------- /nodejs-basics/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodejs-basics/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/package-lock.json -------------------------------------------------------------------------------- /nodejs-basics/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/path.js -------------------------------------------------------------------------------- /nodejs-basics/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/process.js -------------------------------------------------------------------------------- /nodejs-basics/querystring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/querystring.js -------------------------------------------------------------------------------- /nodejs-basics/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/server.js -------------------------------------------------------------------------------- /nodejs-basics/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/stream.js -------------------------------------------------------------------------------- /nodejs-basics/string-decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/string-decoder.js -------------------------------------------------------------------------------- /nodejs-basics/timmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/timmer.js -------------------------------------------------------------------------------- /nodejs-basics/tls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/tls.js -------------------------------------------------------------------------------- /nodejs-basics/v8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/v8.js -------------------------------------------------------------------------------- /nodejs-basics/web-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/web-module.js -------------------------------------------------------------------------------- /nodejs-basics/zlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-basics/zlib.js -------------------------------------------------------------------------------- /nodejs-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-commands.md -------------------------------------------------------------------------------- /nodejs-mysql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-mysql/.gitignore -------------------------------------------------------------------------------- /nodejs-mysql/alter-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-mysql/alter-table.js -------------------------------------------------------------------------------- /nodejs-mysql/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-mysql/config.js -------------------------------------------------------------------------------- /nodejs-mysql/create-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-mysql/create-db.js -------------------------------------------------------------------------------- /nodejs-mysql/create-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-mysql/create-table.js -------------------------------------------------------------------------------- /nodejs-mysql/delete-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-mysql/delete-record.js -------------------------------------------------------------------------------- /nodejs-mysql/insert-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-mysql/insert-record.js -------------------------------------------------------------------------------- /nodejs-mysql/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-mysql/package-lock.json -------------------------------------------------------------------------------- /nodejs-mysql/select-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-mysql/select-record.js -------------------------------------------------------------------------------- /nodejs-mysql/update-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-mysql/update-record.js -------------------------------------------------------------------------------- /nodejs-programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/nodejs-programming.md -------------------------------------------------------------------------------- /play-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/play-video.js -------------------------------------------------------------------------------- /standard-input-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Interview-Prep-Resources/nodejs-interview-questions/HEAD/standard-input-output.js --------------------------------------------------------------------------------