Node.js Node Module System (refs): Difference between revisions
From WikiMLT
m (Стадий: 5 [Фаза:Утвърждаване, Статус:Авторизиран]; Категория:JavaScript) |
mNo edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 23: | Line 23: | ||
{{devStage | {{devStage | ||
| Прндл = JavaScript | | Прндл = JavaScript | ||
| Стадий = | | Пдрдб = Б | ||
| Стадий = 6 | |||
| Фаза = Утвърждаване | | Фаза = Утвърждаване | ||
| Статус = | | Статус = Утвърден | ||
| ИдтПт = Spas | | ИдтПт = Spas | ||
| РзбПт = Spas | | РзбПт = Spas |
Latest revision as of 15:33, 11 March 2023
References
- Code with Mosh: The Complete Node.js Course
- W3School: Node.js Tutorial
- W3School: JavaScript Tutorial
- W3School: JavaScript Reference
- https://nodejs.dev/learn
- https://nodejs.org/en/docs/
- https://nodejs.org/dist/latest–v16.x/docs/api/
Introduction
Consider modules to be the same as JavaScript libraries. A set of functions you want to include in your application. There is a number of modules that are build-in the core of Node. Such modules are:
os
(operating system)fs
(file system)events
http
- for more modules look at W3S Built-in Modules Reference.
Also we could create our own modules.