Further Improvements in Node.js Roadmap. (#6666)
parent
eefe365068
commit
2e2d11328d
10 changed files with 24 additions and 21 deletions
@ -1,13 +1,13 @@ |
||||
# EJS |
||||
|
||||
EJS is a templating language or engine that allows you to generate HTML markup with pure JavaScript. And this is what makes it perfect for Nodejs applications. |
||||
EJS is a template language or engine that allows you to generate HTML markup with pure JavaScript. And this is what makes it perfect for Nodejs applications. |
||||
In simple words, the EJS template engine helps to easily embed JavaScript into your HTML template. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [@official@Ejs website](https://ejs.co/) |
||||
- [@official@Ejs Official Documentations](https://ejs.co/#docs) |
||||
- [@official@Ejs Official Package](https://www.npmjs.com/package/ejs) |
||||
- [@official@EJS Website](https://ejs.co/) |
||||
- [@official@EJS Official Documentation](https://ejs.co/#docs) |
||||
- [@official@EJS Official Package](https://www.npmjs.com/package/ejs) |
||||
- [@article@Try EJS Online](https://ionicabizau.github.io/ejs-playground/) |
||||
- [@article@How to use EJS](https://www.digitalocean.com/community/tutorials/how-to-use-ejs-to-template-your-node-application) |
||||
- [@article@Step-by-Step EJS Guide](https://codeforgeek.com/ejs-template-engine-in-nodejs/) |
||||
|
@ -1,12 +1,14 @@ |
||||
# What is Node.js |
||||
|
||||
Node.js is an open-source and cross-platform JavaScript runtime environment. It is a popular tool for almost any kind of project! Node.js runs the V8 JavaScript engine, Google Chrome's core, outside the browser. This allows Node.js to be very performant. A Node.js app runs in a single process, without creating a new thread for every request. Node.js provides a set of asynchronous I/O primitives in its standard library that prevent JavaScript code from blocking and generally, libraries in Node.js are written using non-blocking paradigms, making blocking behavior the exception rather than the norm. |
||||
Node.js is an open-source and cross-platform JavaScript runtime environment. It is a popular tool for almost any kind of project! Node.js runs the V8 JavaScript engine, Google Chrome's core, outside the browser. This allows Node.js to be very performant. A Node.js app runs in a single process, without creating a new thread for every request. |
||||
|
||||
Node.js provides a set of asynchronous I/O primitives in its standard library that prevent JavaScript code from blocking and generally, libraries in Node.js are written using non-blocking paradigms, making blocking behavior the exception rather than the norm. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [@official@Official Website](https://nodejs.org/en/about/) |
||||
- [@article@Node.JS Introduction](https://www.w3schools.com/nodejs/nodejs_intro.asp) |
||||
- [@official@Official Website](https://nodejs.org/en/learn/getting-started/introduction-to-nodejs) |
||||
- [@official@Node.js - Getting Started](https://nodejs.org/en/learn/getting-started/introduction-to-nodejs) |
||||
- [@article@Node.js - Introduction](https://www.w3schools.com/nodejs/nodejs_intro.asp) |
||||
- [@video@What is Node.js?](https://www.youtube.com/watch?v=uVwtVBpw7RQ) |
||||
- [@video@How Node.js Works?](https://www.youtube.com/watch?v=jOupHNvDIq8) |
||||
- [@feed@Explore top posts about Node.js](https://app.daily.dev/tags/nodejs?ref=roadmapsh) |
||||
|
Loading…
Reference in new issue