Node.js Node Module System (refs): Difference between revisions
From WikiMLT
mNo edit summary |
m Стадий: 1 [Фаза:Идентифициране, Статус:Създаване]; Категория:JavaScript |
||
Line 1: | Line 1: | ||
<noinclude><!--[[Category:JavaScript|?]]-->{{ContentArticleHeader/JavaScript}}</noinclude> | |||
== References == | |||
* [https://codewithmosh.com/p/object-oriented-programming-in-javascript Code with Mosh: The Ultimate JavaScript Mastery Series - Part 2] | |||
* [https://www.w3schools.com/js/default.asp W3School: JavaScript Tutorial] | |||
== Section 1 == | |||
... | |||
== References == | == References == | ||
Line 21: | Line 29: | ||
== Global Object == | == Global Object == | ||
<noinclude> | |||
<div id='devStage'> | |||
{{devStage | |||
| Прндл = JavaScript | |||
| Стадий = 1 | |||
| Фаза = Идентифициране | |||
| Статус = Създаване | |||
| ИдтПт = {{REVISIONUSER}} | |||
| ИдтДт = {{Today}} | |||
| ИдтРв = {{REVISIONID}} | |||
}} | |||
</div> | |||
</noinclude> |
Revision as of 13:22, 1 August 2022
References
- Code with Mosh: The Ultimate JavaScript Mastery Series – Part 2
- W3School: JavaScript Tutorial
Section 1
…
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/
- Context.tech: Install MySQL on WSL
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.