


Installer
NodeJS provides some installers, which can be downloaded and installed at nodejs.org.
Under Windows system, select the installation file with .msi suffix that matches the system version. Under Mac OS X system, select the installation file with .pkg suffix.
Compile and install
There is no ready-made installation program available under Linux system. Although some distributions can be installed using methods such as apt-get, they may not be able to install the latest version. Therefore, the following compilation method is generally used to install NodeJS under Linux systems.
1. Make sure that the g++ version in the system is above 4.6 and the python version is above 2.6.
2. Download the latest version of NodeJS source code package with tar.gz suffix from nodejs.org and extract it to a certain location.
3. Enter the unzipped directory and use the following commands to compile and install.
$ ./configure $ make $ sudo make install
Run
Open the terminal and type node to enter the command interactive mode. You can enter a code statement and execute it immediately and display the result, for example:
$ node > console.log('Hello World!'); Hello World!
If you want to run a large section of code, you can write a JS file first and then run it. For example, there is the following hello.js.
function hello() { console.log('Hello World!'); } hello();
After writing, type node hello.js in the terminal to run. The results are as follows:
$ node hello.js Hello World!
Permission issue
Under Linux systems, root privileges are required when using NodeJS to listen on port 80 or 443 to provide HTTP(S) services. There are two ways to do this.
One way is to use the sudo command to run NodeJS. For example, server.js run through the following command has permission to use ports 80 and 443. This method is generally recommended to ensure that root permissions are only provided to JS scripts that need it.
$ sudo node server.js
Another way is to use the chmod +s command to make NodeJS always run with root privileges. The specific method is as follows. Because this method allows any JS script to have root permissions, it is not very safe, so it is not recommended for systems that require high security considerations.
$ sudo chown root /usr/local/bin/node $ sudo chmod +s /usr/local/bin/node

node、nvm与npm的区别:1、nodejs是项目开发时所需要的代码库,nvm是nodejs版本管理工具,npm是nodejs包管理工具;2、nodejs能够使得javascript能够脱离浏览器运行,nvm能够管理nodejs和npm的版本,npm能够管理nodejs的第三方插件。

Vercel是什么?本篇文章带大家了解一下Vercel,并介绍一下在Vercel中部署 Node 服务的方法,希望对大家有所帮助!

node怎么爬取数据?下面本篇文章给大家分享一个node爬虫实例,聊聊利用node抓取小说章节的方法,希望对大家有所帮助!

node导出模块的两种方式:1、利用exports,该方法可以通过添加属性的方式导出,并且可以导出多个成员;2、利用“module.exports”,该方法可以直接通过为“module.exports”赋值的方式导出模块,只能导出单个成员。

安装node时会自动安装npm;npm是nodejs平台默认的包管理工具,新版本的nodejs已经集成了npm,所以npm会随同nodejs一起安装,安装完成后可以利用“npm -v”命令查看是否安装成功。

node中没有包含dom和bom;bom是指浏览器对象模型,bom是指文档对象模型,而node中采用ecmascript进行编码,并且没有浏览器也没有文档,是JavaScript运行在后端的环境平台,因此node中没有包含dom和bom。

Node.js 如何实现异步资源上下文共享?下面本篇文章给大家介绍一下Node实现异步资源上下文共享的方法,聊聊异步资源上下文共享对我们来说有什么用,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Atom editor mac version download
The most popular open source editor
