Below I will share with you an article based on node packaging executable file tool_Pkg usage experience sharing, which has a good reference value and I hope it will be helpful to everyone.
Project Address
This project is amazing. It directly packages the node.js project into an exe file that can be directly executed by Windows ( Also supports FreeBSD, linux, macos, arm systems), you don’t even need to install Node.js, and you don’t need to modify any code in your project!
First install pkg
npm install -g pkg
and then execute
pkg entrance.js
in the project directory to package linux, macos, win3 The platform's executable file. entrance.js is the entrance file of your node project.
If you only want to package the exe under windows, add the -t parameter. win is an exe file packaged under the windows platform. For specific optional parameters, please refer to the project directory
pkg -t win entrance.js
After a while, the packaged entry.exe file will be generated in the project directory.
pkg will automatically search for dependent files starting from the entry file and package them all without modifying any code in the project.
Others
pkg can be packaged according to the configuration under package.json. The default entry file is the file pointed to by bin.
Execute
pkg .
or
pkg package.json
to automatically package according to the configuration of package.json.
//package.json { //其他配置项 "bin": "service.js",//入口文件 "pkg": { "scripts": [ "build/**/*.js"//需要打包进来的其他js文件,可添加多个 ], "assets": [ "dist/**/*"//静态文件的目录,可添加多个 ] } }
Note: Static files need to replace the file reference in the project with the form
path.join(__dirname, 'dist')
before they can be packaged normally, otherwise they may not be read.
Example
Use vue-cli to build the project, and use npm run build to compile your project and generate static files in the dist directory. These are all the contents that come with vue-cli and will not be described in detail.
Create a new service.js file in the project directory, and add the following code to set up an express static server locally so that you can access your website locally (deploying it online is similar)
//service.js const express = require('express'); const app = express(); const path = require('path'); app.use(express.static(path.join(__dirname, 'dist')));//注意这里使用path.join(__dirname, 'dist')而不是'dist',虽然在命令行中执行起来效果是一样的,不过pkg打包会无法识别到dist目录 var server = app.listen(8081, function () { var host = server.address().address var port = server.address().port console.log(`AIbuy agents server start successfully on http://${host}:${port}`) })
At this point you can execute
node service.js
on the console to start your server. After the startup is completed, the browser visits http://localhost:8081/ to view your website.
Next we use the service.js and dist directories to be packaged into an exe file for the convenience of others.
First install pkg
npm install -g pkg
and then modify it package.json, add bin (if it is not service.js) and pkg items
{ //其他配置项 "bin": "service.js",//指定入口文件 "pkg": { "assets": [ "dist/**/*"//指定要打包的静态文件目录 ] } }
and then execute it in the project directory
pkg -t win package.json
After completion, an exe file will be generated. Double-click to start it, which is equivalent to Execute node service.js, and then you can access the packaged project in your browser (http://localhost:8081/)! There is no need to install node in advance. It is very convenient to demonstrate to the boss!
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
How to use vue less to implement a simple skin change function
How to use angular, react and vue to implement the same interview Question component
Use jQuery to automatically load when scrolling to the bottom
How to implement modal dialog box in Angular2.0
How to implement motion buffering effect in JS (detailed tutorial)
The above is the detailed content of node packaging tool Pkg (detailed tutorial). For more information, please follow other related articles on the PHP Chinese website!

JavaScript is at the heart of modern websites because it enhances the interactivity and dynamicity of web pages. 1) It allows to change content without refreshing the page, 2) manipulate web pages through DOMAPI, 3) support complex interactive effects such as animation and drag-and-drop, 4) optimize performance and best practices to improve user experience.

C and JavaScript achieve interoperability through WebAssembly. 1) C code is compiled into WebAssembly module and introduced into JavaScript environment to enhance computing power. 2) In game development, C handles physics engines and graphics rendering, and JavaScript is responsible for game logic and user interface.

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
