Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

ArturJS/nodejs-certification-preparation

Repository files navigation

nodejs-certification-preparation

List of useful info about https://github.com/nodejs-certified-developer/certification

https://blog.testlodge.com/tdd-vs-bdd/

https://medium.com/devschacht/node-hero-6a07ef8d822d

https://hackernoon.com/a-crash-course-on-testing-with-node-js-6c7428d3da02

https://codeburst.io/javascript-unit-testing-using-mocha-and-chai-1d97d9f18e71

https://habr.com/ru/post/308352/

https://hackernoon.com/testing-node-js-in-2018-10a04dd77391

https://medium.com/devschacht/node-hero-chapter-9-68041507aec

https://www.codementor.io/davidtang/unit-testing-and-tdd-in-node-js-part-1-8t714s877

https://blog.risingstack.com/node-hero-node-js-unit-testing-tutorial/

https://www.guru99.com/node-js-testing-jasmine.html

http://getbug.ru/nastroyka-freymvorka-testirovaniya-node-js/

https://speakerdeck.com/wa7son/holyjs-moscow-2016-debugging-node-dot-js-in-production?slide=3

https://github.com/matvi3nko/nodejs-diagnostics-resources

https://youtu.be/_qzFJ2MPVWQ

https://youtu.be/K8spO4hHMhg

https://youtu.be/briH-bfleIM

https://medium.com/@sethhodgson/under-the-hood-of-http-requests-in-node-f273b44ff718

https://nodejs.org/api/https.html - docs https

https://webformyself.com/node-js-net-modul/

https://www.codementor.io/murphyisiwele/demystifying-nodejs-part-1-tcp-sockets-bf6bbskwz

https://medium.com/@Alibaba_Cloud/node-js-tcp-app-development-on-ecs-3109ab73fada

https://medium.com/yld-engineering-blog/building-a-tcp-service-using-node-js-79385fe4443e

https://medium.com/@vsvaibhav2016/create-http-server-in-node-js-a3a452477771

https://medium.com/@nileshsingh/everything-about-creating-an-https-server-using-node-js-2fc5c48a8d4e

https://nodejs.org/api/events.html

https://www.tutorialspoint.com/nodejs/nodejs_event_emitter.htm

https://medium.com/devschacht/safia-abdalla-node-module-deep-dive-eventemitter-f2b7954c4760

https://github.com/azat-co/you-dont-know-node#spawn-vs-fork-vs-exec

https://nodejs.org/dist/latest/docs/api/child_process.html#child_process_child_process_exec_command_options_callback

https://webapplog.com/you-dont-know-node/

https://medium.com/tensult/stream-and-buffer-concepts-in-node-js-87d565e151a0

https://habr.com/ru/company/zerotech/blog/339900/

https://medium.freecodecamp.org/do-you-want-a-better-understanding-of-buffer-in-node-js-check-this-out-2e29de2968e8

https://makeomatic.ru/blog/2016/08/22/Streams_handbook/

https://rishabh.io/tech/nodejs/nodejs-buffers-and-streams.html

https://codeburst.io/nodejs-streams-demystified-e0b583f0005

https://www.joyent.com/node-js/production/design/errors

https://habr.com/ru/post/222761/

https://github.com/i0natan/nodebestpractices/tree/security-best-practices-section/sections/errorhandling

https://nodejs.org/api/errors.html

https://medium.com/front-end-weekly/error-handling-in-node-javascript-suck-unless-you-know-this-2018-aa0a14cfdd9d

https://www.loggly.com/blog/node-js-error-handling/

https://stackoverflow.com/questions/7310521/node-js-best-practice-exception-handling/7313005#7313005

https://medium.freecodecamp.org/how-to-gracefully-handle-failures-in-a-node-js-api-client-605673cb72ab

https://nodejs.org/dist/latest/docs/api/fs.html

https://www.tutorialspoint.com/nodejs/nodejs_file_system.htm

https://nodejs.org/es/docs/guides/event-loop-timers-and-nexttick/

https://medium.com/devschacht/event-loop-timers-and-nexttick-18579cd122e0

https://guides.codepath.com/nodejs/Control-flow

https://www.sitepoint.com/flow-control-callbacks-promises-async-await/

http://book.mixu.net/node/ch7.html

node -p node -r https://nodejs.org/dist/latest-v10.x/docs/api/cli.html#cli_p_print_script

process.argv https://nodejs.org/docs/latest/api/process.html#process_process_argv

nodejs default cli reader https://nodejs.org/dist/latest-v10.x/docs/api/readline.html

npm and package.json

https://docs.npmjs.com/files/package.json

https://docs.npmjs.com/cli-documentation/

https://docs.npmjs.com/misc/config#shorthands-and-other-cli-niceties

https://developer.mozilla.org/ru/docs/Web/JavaScript/Closures

https://www.w3schools.com/js/js_function_closures.asp

https://github.com/azat-io/you-dont-know-js-ru/blob/master/scope & closures/ch5.md

https://medium.freecodecamp.org/javascript-closures-simplified-d0d23fa06ba4

https://learn.javascript.ru/new-prototype

https://learn.javascript.ru/prototype

https://hackernoon.com/prototypes-in-javascript-5bba2990e04b

https://github.com/getify/You-Dont-Know-JS/blob/master/this & object prototypes/ch5.md

https://habr.com/ru/post/438880/

https://medium.com/@vkozulya/d194b902cfc0

https://medium.com/@nodepractices/were-under-attack-23-node-js-security-best-practices-e33c146cb87d

https://blog.risingstack.com/node-hero-node-js-security-tutorial/

https://blog.risingstack.com/node-js-at-scale-module-system-commonjs-require/

https://habr.com/ru/post/217901/

https://www.w3schools.com/nodejs/nodejs_modules.asp

http://www.java2s.com/Tutorials/Javascript/Node.js_Tutorial/1000__Node.js_Module_System.htm

https://medium.freecodecamp.org/requiring-modules-in-node-js-everything-you-need-to-know-e7fbd119be8

http://speakingjs.com/es5/ch16.html

https://medium.freecodecamp.org/node-js-child-processes-everything-you-need-to-know-e69498fe970a

https://nodejs.org/api/process.html

https://nodejs.org/api/os.html

Misc

https://medium.freecodecamp.org/@samerbuna - Author for Pluralsight, O'Reilly, Manning, and LinkedIn Learning. Curator of jsComplete.com

https://www.code-sample.com/2016/09/node-js-interview-questions-and-answers.html - 65 Best NodeJs Interview Questions and Answers

Releases

No releases published

Packages

No packages published

Contributors 2

AltStyle によって変換されたページ (->オリジナル) /