Home Backend Development PHP Tutorial Building and configuring nodejs environment in Linux environment, using nodejs writing tools and simplifying less compilation

Building and configuring nodejs environment in Linux environment, using nodejs writing tools and simplifying less compilation

Jul 28, 2016 am 08:30 AM
color desktop less node

Since my server is a cloud server, the whole thing is connected to SSH for configuration

LNMP

<code>由于云服务器刚使用不久,此前一直是只安装了centos 6.5版本的裸机,因此这次顺道配置了LNMP,整个LNMP环境的安装和LAMP环境的搭建基本一致。附本人参照的配置博客:http://www.cnblogs.com/xiaoit/p/3991037.html,这篇博客只是基础的安装LNMP,并测试Nginx解析php脚本文件,并未对各个环节做详细配置说明,如果想看详细的配置,请自行百度。
</code>
Copy after login

node.js installation

<code>在Node.js上下载安装包,非源码包,因为安装包是已经被编译过,可以直接使用,源码包安装的话,繁琐坑多。

1.在安装之前首先核对自己的系统位数
</code>
Copy after login
<code>getconf LONG_BIT</code>
Copy after login

 Linux环境下nodejs环境的搭建以及配置,使用nodejs编写工具与简化less编译

<code>2.在node.js上下载相应版本的安装包(https://nodejs.org/en/download/)
</code>
Copy after login

 Linux环境下nodejs环境的搭建以及配置,使用nodejs编写工具与简化less编译

<code>3.通过ftp上传到自己的云服务器上
4.解压缩文件 $tar xvJf  ***.tar.xz
5.移动解压缩的文件到node     $mv *** node
6.因为安装包已经被编译过,因此不需要再安装,直接可以使用,但是为了以后使用的方便,进行环境变量的配置   export PATH=/root/node/bin  (如果不确定自己的文件夹路径,可以使用 find /path -name node进行查询)
7.然后 node -v 和npm -v进行测试!
</code>
Copy after login

 Linux环境下nodejs环境的搭建以及配置,使用nodejs编写工具与简化less编译

Using node.js to write less

<code>1.安装less,在node/lib/node_modules目录下, $cd node/lib/node_modules
2.#npm install less
3.#less --help 进行测试环境是否装好 
</code>
Copy after login

 Linux环境下nodejs环境的搭建以及配置,使用nodejs编写工具与简化less编译
Press the q key to exit the current operation

<code>4.编写代码,测试less环境
</code>
Copy after login
<code><span>@<span>color:</span> #<span>4</span>D926F</span>;

<span>#header</span><span>{
  <span><span>color</span>:<span> @color</span></span>;
<span>}</span></span><span>h2</span><span>{
  <span><span>color</span>:<span> @color</span></span>;
<span>}</span></span></code>
Copy after login
<code>5.输入:lessc /Users/vickay/Desktop/testLess.less /Users/vickay/Desktop/testLess1.css ,可以在桌面生成css文件
</code>
Copy after login

 Linux环境下nodejs环境的搭建以及配置,使用nodejs编写工具与简化less编译

<code>6.如果在编译过程中想要将css文件压缩,则输入:lessc -x /Users/vickay/Desktop/testLess.less /Users/vickay/Desktop/testLess.css ,只是比5多了-x参数,在执行过程中,会有以下提示:
</code>
Copy after login

 Linux环境下nodejs环境的搭建以及配置,使用nodejs编写工具与简化less编译

<code>7.生成css文件内容的比较
</code>
Copy after login

 Linux环境下nodejs环境的搭建以及配置,使用nodejs编写工具与简化less编译

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

The above introduces the construction and configuration of the nodejs environment in the Linux environment, using nodejs writing tools and simplifying less compilation, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to install GitHub Desktop on Windows 11 or 10? How to install GitHub Desktop on Windows 11 or 10? May 25, 2023 pm 03:51 PM

Step 1: Download GitHubDesktop If you don’t want to use the command line to install GitHubDesktop, you can download it manually from the official website. Visit the link and use the "Download for Windows 64-bit" button to get the executable installation file on your system. When you click on it, a popup will appear to save the GitHubDesktopSetup-x64.exe file. Step 2: Install GitHub Desktop on Windows 11 or 10 After completing the download process, the installation file will be on your system. Double-click it to start the installation process of GitHubDesktop. Wait a few seconds, the system will automatically

How to delete node in nvm How to delete node in nvm Dec 29, 2022 am 10:07 AM

How to delete node with nvm: 1. Download "nvm-setup.zip" and install it on the C drive; 2. Configure environment variables and check the version number through the "nvm -v" command; 3. Use the "nvm install" command Install node; 4. Delete the installed node through the "nvm uninstall" command.

System76 tips Fedora Cosmic spin for 2025 release with Fedora 42 System76 tips Fedora Cosmic spin for 2025 release with Fedora 42 Aug 01, 2024 pm 09:54 PM

System76 has made waves recently with its Cosmic desktop environment, which is slated to launch with the next major alpha build of Pop!_OS on August 8. However, a recent post on X by System76 CEO, Carl Richell, has tipped that the Cosmic DE developer

How to use express to handle file upload in node project How to use express to handle file upload in node project Mar 28, 2023 pm 07:28 PM

How to handle file upload? The following article will introduce to you how to use express to handle file uploads in the node project. I hope it will be helpful to you!

CAMM2 for desktop PCs: MSI explains the benefits of the new RAM standard for gaming towers CAMM2 for desktop PCs: MSI explains the benefits of the new RAM standard for gaming towers Aug 17, 2024 pm 06:47 PM

The first LPCAMM2 modules for laptops are already being delivered, and desktop mainboards are also expected to be equipped with CAMM2 in future. CAMM2 and LPCAMM2 are not compatible with each other, and even on desktop PCs, customers need to be caref

An in-depth analysis of Node's process management tool 'pm2” An in-depth analysis of Node's process management tool 'pm2” Apr 03, 2023 pm 06:02 PM

This article will share with you Node's process management tool "pm2", and talk about why pm2 is needed, how to install and use pm2, I hope it will be helpful to everyone!

Pi Node Teaching: What is a Pi Node? How to install and set up Pi Node? Pi Node Teaching: What is a Pi Node? How to install and set up Pi Node? Mar 05, 2025 pm 05:57 PM

Detailed explanation and installation guide for PiNetwork nodes This article will introduce the PiNetwork ecosystem in detail - Pi nodes, a key role in the PiNetwork ecosystem, and provide complete steps for installation and configuration. After the launch of the PiNetwork blockchain test network, Pi nodes have become an important part of many pioneers actively participating in the testing, preparing for the upcoming main network release. If you don’t know PiNetwork yet, please refer to what is Picoin? What is the price for listing? Pi usage, mining and security analysis. What is PiNetwork? The PiNetwork project started in 2019 and owns its exclusive cryptocurrency Pi Coin. The project aims to create a one that everyone can participate

What folder is desktop? What folder is desktop? Feb 01, 2023 pm 04:02 PM

Desktop is the desktop folder. The method to view the desktop folder is: 1. Open "My Computer" on the desktop; 2. Click to open the C drive; 3. Then click the search box in the upper right corner of the page; 4. Enter "Desktop" Search and you will see the "Desktop" folder in the search results.

See all articles