Node.js Node Module System (refs): Difference between revisions
From WikiMLT
m Стадий: 3 [Фаза:Разработване, Статус:Разработван]; Категория:JavaScript |
mNo edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<noinclude><!--[[Category:JavaScript|?]]-->{{ContentArticleHeader/JavaScript}}</noinclude> | <noinclude><!--[[Category:JavaScript|?]]-->{{ContentArticleHeader/JavaScript}}</noinclude> | ||
== References == | == References == | ||
Line 16: | Line 10: | ||
*https://nodejs.org/en/docs/ | *https://nodejs.org/en/docs/ | ||
*https://nodejs.org/dist/latest-v16.x/docs/api/ | *https://nodejs.org/dist/latest-v16.x/docs/api/ | ||
== Introduction == | == Introduction == | ||
Line 26: | Line 19: | ||
* <code>http</code> | * <code>http</code> | ||
*for more modules look at [https://www.w3schools.com/nodejs/ref_modules.asp W3S Built-in Modules Reference.] | *for more modules look at [https://www.w3schools.com/nodejs/ref_modules.asp W3S Built-in Modules Reference.] | ||
Also we could create our own modules. | Also we could create our own modules.<noinclude> | ||
<noinclude> | |||
<div id='devStage'> | <div id='devStage'> | ||
{{devStage | {{devStage | ||
| Прндл = JavaScript | | Прндл = JavaScript | ||
| Стадий = | | Пдрдб = Б | ||
| Фаза = | | Стадий = 6 | ||
| Статус = | | Фаза = Утвърждаване | ||
| Статус = Утвърден | |||
| ИдтПт = Spas | | ИдтПт = Spas | ||
| РзбПт = {{REVISIONUSER}} | | РзбПт = Spas | ||
| АвтПт = Spas | |||
| УтвПт = {{REVISIONUSER}} | |||
| ИдтДт = 1.08.2022 | | ИдтДт = 1.08.2022 | ||
| РзбДт = {{Today}} | | РзбДт = 12.02.2023 | ||
| АвтДт = 12.02.2023 | |||
| УтвДт = {{Today}} | |||
| ИдтРв = [[Special:Permalink/29665|29665]] | | ИдтРв = [[Special:Permalink/29665|29665]] | ||
| РзбРв = {{REVISIONID}} | | РзбРв = [[Special:Permalink/32240|32240]] | ||
| АвтРв = [[Special:Permalink/32241|32241]] | |||
| УтвРв = {{REVISIONID}} | |||
}} | }} | ||
</div> | </div> | ||
</noinclude> | </noinclude> |
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.