Закрыть
×
=0) { let js = text.slice(pos1, pos2); + '<\/' + "script" + '>'; arrText.push(js); // next pos1 = pos2; continue; } } } break; } return arrText; } function OpenDialog(parentDiv, urlContent) { parentDiv = document.getElementById('modal-background'); // new !!!!!!! parentDiv.appendChild(document.getElementById('modal-template')); document.getElementById('modal-background').style.display = "flex"; // !!!!! block document.getElementById('modal-template').style.display = "flex"; // !!!!! document.getElementById('modal-body').innerHTML = ""; post_url(urlContent, "", function(text_from_server) { var element = document.getElementById('modal-body'); element.innerHTML = text_from_server; // add scripts var arrJSText = get_scripts(text_from_server); for (var i=0; i
dir.by
Праздники ...
Праздники ...
День Октябрьской революции (7 Ноября)
Концерты, выставки ...
Концерты, выставки ...
Спектакль "Чайка"|||г. Минск 9 сентября, 10 сентября, 1 октября 2026
Афишу
Спорт занятия ...
Спорт занятия ...
Занятия в тренажерном зале
Спорт занятие
Компьютер, программы...
Компьютер, программы...
Объявления ...
Объявления ...
Механизм рулевой с гидроусилителем ШНКФ 453461.700-35
Объявление
Новости ...
Новости ...
Форум ...
Форум ...
обсуждение...
Поиск
Концерты
Спорт
Форум
Компьютер
Компьютер, программы
→
Node.js (это web сервер исполняющий js файлы)
→
npm in Node.js
Выполняем в командной строке "npm install имя_пакета" | Node.js
посмотрели
9783
раз
обновлено: 7 June 2020
Command Prompt (Win Console)
npm install имя_пакета
Результат:
• пакет устанавливается в папку
node_modules
• в файле
package.json
в секции
dependencies
добавится
название пакета
и
версия
• создастся файл
package-lock.json
с полным описанием пакета (если файл
package-lock.json
был то добавится секция с полным описанием пакета)
Примеры
Вариант 1
классический
npm install
имя_пакета
Пример:
npm install
jquery
Результат:
• пакет устанавливается в папку
node_modules
• в файле
package.json
в
dependencies
добавится
название пакета
и
версия
Файл
package.json
json
{
"name"
:
"my_example3"
,
"version"
:
"1.0.0"
,
"description"
: "",
"main"
:
"index.js"
,
"scripts"
: {
"test"
:
"echo "
Error: no test specified
" && exit 1"
},
"author"
: "",
"license"
:
"ISC"
,
"
dependencies"
: {
"jquery"
:
"^3.5.1"
}
}
Вариант 2
используем опцию
--save
На заметку 1
Опция
--save
и без опции это тоже самое (после версии 5 в NPM)
То есть
Вариант1
=
Вариант2
(после версии 5 в NPM)
На заметку 2
До версии 5 если не использовать опцию
--save
то пакет не добавлялся в файл
package.json
в
dependencies
npm install
--save
имя_пакета
Пример:
npm install --save
jquery
Результат:
• пакет устанавливается в папку
node_modules
• в файле
package.json
в
dependencies
добавится
название пакета
и
версия
Файл
package.json
json
{
"name"
:
"my_example1"
,
"version"
:
"1.0.0"
,
"description"
: "",
"main"
:
"index.js"
,
"scripts"
: {
"test"
:
"echo "
Error: no test specified
" && exit 1"
},
"author"
: "",
"license"
:
"ISC"
,
"dependencies"
: {
"jquery"
:
"^3.5.1"
}
}
Вариант 3
используем опцию
--save-dev
npm install
--save-dev
имя_пакета
Пример:
npm install --save-dev
jquery
Результат:
• пакет устанавливается в папку
node_modules
• в файле
package.json
в
devDependencies
добавится
название пакета
и
версия
Файл
package.json
json
{
"name"
:
"my_example2"
,
"version"
:
"1.0.0"
,
"description"
: "",
"main"
:
"index.js"
,
"scripts"
: {
"test"
:
"echo "
Error: no test specified
" && exit 1"
},
"author"
: "",
"license"
:
"ISC"
,
"devDependencies"
: {
"jquery"
:
"^3.5.1"
}
}
← Previous topic
"npm init" | Result: Creates an empty package.json file and populates that file with the default data | Node.js
Next topic →
"npm install" | Result: Installs the JavaScript libraries (packages) that are specified in the package.json | Node.js
Your feedback ... Comments ...
Your Name
Your comment
(www links can only be added by a logged-in user)
+ Picture
Объявления
Объявления
•
What is Node.js ?
•
How do I find out the version of Node.js?
•
Installing Node.js (download and install for Windows)
•
How do I update my Node.js version (install the latest version)?
npm in Node.js
•
What is npm in Node.js?
•
How do I find the npm (Node.js) version?
•
How do I update my npm version (install the latest version) ? | Node.js
•
File package.json in Node.js
•
Difference Between Tilde(~) and Lid(^) in package.json | Node.js
•
File package-lock.json in Node.js
•
"npm init" | Result: Creates an empty package.json file and populates that file with the default data | Node.js
•
"npm install package_name" | Result: Installs JavaScript Library (Package) | For example, run "npm install jquery" | will add the jQuery library to the node_modules folder | Node.js
•
"npm install" | Result: Installs the JavaScript libraries (packages) that are specified in the package.json | Node.js
•
"npm list -g" (see a list of all installed global packages) | Node.js
•
"npm install -g package_name" (global package install) | Node.js
•
"npm uninstall -g package_name" (global package removal) | Node.js
•
Run "npm run EvgenConvertCSS" | The package.json file like this: "scripts": {"EvgenConvertCSS": "node-sass --include-path scss 1.scss 1.css"} | Node.js
•
Run "npm run EvgenMyCommand" | The file package.json like this: "scripts": {"EvgenMyCommand": "mkdir AAA"} | Node.js
•
Run "npm run MyScript1" | The file package.json like this: "scripts": {"MyScript1": "npm run MyScript2"} | Node.js
•
watch option in npm scripts (watch for changes in files)
Debugging NodeJS
•
Debugging Node.js. Looking at variable values, function stack, breakpoints in Visual Studio Code
Writing Node.js application in a text editor (Notepad, Far)
•
New Node.js app (create the app in a text editor, run in the console)
•
Add the express package to the Node.js (in the Windows console)
•
Uploading an html file and displaying it on the screen in Node.js (creating an application in a text editor, launching it in the console)
Using the socket.io module
•
A simple application with socket.io in Node.js (creating an application in a text editor, running it in the console)
Writing Node.js project in Visual Studio Code
•
New Node.js project (create the project in Visual Studio Code)
•
Create a new Node.js project with websocket (create the project in Visual Studio Code) | client & server
Writing Node.js project in Visual Studio
•
New Node.js project (create the project in Visual Studio)
•
Add the express package to Node.js (in Visual Studio)
•
Uploading an html file and displaying it on the screen in Node.js (project in Visual Studio)
•
Chat (user writes a message and others get a message) using socket.io in Node.js (project in Visual Studio)
https localhost certificate
•
Create https localhost certificate for nodejs
How modules are arranged in Node.js (require, exports)
•
What are modules in Node.js ?
•
How the require function works inside and what happens when we write require("ModuleName") in Node.js
Creating your own module in Node.js
•
Writing and connecting your module to Node.js
Built-in Node.js modules
•
"Express" module Node.js !!!!!!!!!!!!
Hosting Node.js on your website
•
Hosting and installing Node.js on your website. Configuring Node.js in cPanel
•
In Node.js I change the js file, and the old cached js file is displayed. Restart Node.js on your website in cPanel
•
Add npm packages to the Node.js on your site (using cPanel)
•
Error during WebSocket handshake... Hosting Node.js on your website
Heroku.com free service. Running your Node.js app on Heroku.com
•
To use Heroku.com you need to install: Git, Node.js
•
Registration on the Heroku.com website
•
Installing the command line "Heroku CLI"
•
"Heroku CLI" is very slow for Windows
•
Running your Node.js app on Heroku.com
WWW sites for learning Node.js
•
Sites to learn Node.js
Ваши вопросы присылайте по почте:
info@dir.by