

This article mainly introduces the vue+node+webpack environment construction tutorial in detail, which has certain reference value. Interested friends can refer to it. I hope it can help you better build vue, node, and webpack. environment.
1. Environment setup
1.1. Go to the official website to install node.js (http://www.runoob.com/nodejs/nodejs-install-setup.html)
Pay attention to the node version. Only nodes that support harmony mode will support es6, and no error will be reported when building the project name based on webpack. The latest version is recommended.
After downloading the installation package, just click to install. The interface for testing successful installation is as follows:
1.2. Use npm to install webpack. The command line statement is npm install webpack -g. The interface for successful test installation is as follows:
1.3. The following is to install the Taobao image, as shown below:
1.4. The next step is to install vue-cli globally. It should be noted that it takes a long time to install vue-cli using npm, which may take more than two hours.
The installation statement is: npminstall--globalvue-cli
1.5. Create a template based on webpack The new project
The command line statement is vue init webpack my-project (where my-project is the file name, and the file name can only be lowercase letters). When creating a new template project, you need to go to the specified folder.
Enter vue init webpack my-project (project folder name) in cmd, press Enter, wait for a short while, the items under 'git' will appear in sequence, you can operate as shown below
After the command is executed, you can see the following content under the my-project folder:
After creating When working on a new project, if the following error is reported, it means that the node version is too low and does not support the harmonious mode (probably it supports es6, f otherwise it does not support it. You need expert guidance for details) and should be replaced with a higher version of node. The error is as shown below:
5. Install dependencies
in cmd 1). Enter: cd my-project (project name) and press Enter , enter the specific project folder
2). Enter: cnpm install, press Enter, wait for a short while
The following error may occur after the command is executed. The solution is as follows:
Go back to the project folder and you will find that there is an additional node_modules folder in the project structure (the contents of this file are the previously installed dependencies)
The default project structure created based on scaffolding is as shown below:
6. Webstorm installation, project introduction
Go to the official website to download the webstrom installation package and install it .
Keep going next. Depending on your computer system, choose to install a 64-bit system or a 32-bit system. Select js, css, html àjetbrainsà and then install
Select open under file in webstorm ( Select your project folder)
It looks very simple, but I am afraid that I will make a mistake in a few days.
7. Test whether the environment is set up successfully
Method 1: Enter in cmd: cnpm rundev
(Obviously every time you modify the code, it is very troublesome to enter the command in cmd every time. It is a tedious process, so bring up the npm menu in webstorm
Right-click on the package.json file -> click show npm scripts to bring up the menu. To run in the future, just double-click dev in the npm menu.
Note that the command line running project and the dev running project cannot be run together. When running one, you need to close the other, otherwise an error that the port is occupied will be reported.
)
Method 2: Enter in the browser: localhost:8080 (the default port is 8080)
If you enter the run command, an error will be reported. There are two situations, as shown in the figure below:
The first situation: port occupation problem
The solution is:
Option 1: Close the port in the process.
a. Open cmd and enter the command netstat –ano. All port numbers will appear.
b. Below local address is the port number, and PID is the process number of a program that occupies the port number ( Remember the process number)
c. Open the task manager (ctrl + alt +delete), click on the process, then click on View, select "Select Column", click OK and you will find the process program occupying the port.
d. Find the remembered process number and close it
Option 2: In the config/index.js file, modify the port number. Port: New port number.
Second type: npm version is too low and needs to be upgraded:
Solution:
a. Enter the command: npm install -g npm
b. Copy the files under C:\Users\{your Windows user name}\AppData\Roaming\npm\node_modules\npm to your In \node_modules\npm under the NodeJS installation directory, overwrite all the original files
(or use the comparative method to go through the previous steps again)
The effect after running As shown in the figure below:
2. Changes based on personal needs
1. vue.js changes the default port number 8080 to the specified port:
Executing npm run dev actually calls package.json in the root directory
After opening package.json, you can find such a piece of code
"scripts":{ "dev":"nodebuild/dev-server.js", "build":"nodebuild/build.js", "lint":"eslint--ext.js,.vuesrc" }
From this we can see that we should View the dev-server.js file in the build directory
Can be found in the dev-server.js file
varuri='http://localhost:'+port
The port here is what we are looking for. At the beginning of dev-server.js we can find
varpath=require('path')
And where does the path come from? Where is he coming?
There is a config folder in the root directory. You can tell by the name that it is related to configuration. Open index.js in the config directory
dev:{ env:require('./dev.env'), port:8080, autoOpenBrowser:true, assetsSubDirectory:'static', assetsPublicPath:'/', proxyTable:{}, cssSourceMap:false }
Not only can you change the port, but you can also change other things as needed. Configuration information.
Related recommendations:
A simple tutorial on how to build a vue environment with detailed examples
The clearest diagram of how to build a PHP server environment Text tutorial

Vue是一款优秀的JavaScript框架,它可以帮助我们快速构建交互性强、高效性好的Web应用程序。Vue3是Vue的最新版本,它引入了很多新的特性和功能。Webpack是目前最流行的JavaScript模块打包器和构建工具之一,它可以帮助我们管理项目中的各种资源。本文就为大家介绍如何使用Webpack打包和构建Vue3应用程序。1.安装Webpack

区别:1、webpack服务器启动速度比vite慢;由于vite启动的时候不需要打包,也就无需分析模块依赖、编译,所以启动速度非常快。2、vite热更新比webpack快;vite在HRM方面,当某个模块内容改变时,让浏览器去重新请求该模块即可。3、vite用esbuild预构建依赖,而webpack基于node。4、vite的生态不及webpack,加载器、插件不够丰富。

随着Web开发技术的不断发展,前后端分离、模块化开发已经成为了一个广泛的趋势。PHP作为一种常用的后端语言,在进行模块化开发时,我们需要借助一些工具来实现模块的管理和打包,其中webpack是一个非常好用的模块化打包工具。本文将介绍如何使用PHP和webpack进行模块化开发。一、什么是模块化开发模块化开发是指将程序分解成不同的独立模块,每个模块都有自己的作

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

在vue中,webpack可以将js、css、图片、json等文件打包为合适的格式,以供浏览器使用;在webpack中js、css、图片、json等文件类型都可以被当做模块来使用。webpack中各种模块资源可打包合并成一个或多个包,并且在打包的过程中,可以对资源进行处理,如压缩图片、将scss转成css、将ES6语法转成ES5等可以被html识别的文件类型。

Webpack是一款模块打包工具。它为不同的依赖创建模块,将其整体打包成可管理的输出文件。这一点对于单页面应用(如今Web应用的事实标准)来说特别有用。

配置方法:1、用导入的方法把ES6代码放到打包的js代码文件中;2、利用npm工具安装babel-loader工具,语法“npm install -D babel-loader @babel/core @babel/preset-env”;3、创建babel工具的配置文件“.babelrc”并设定转码规则;4、在webpack.config.js文件中配置打包规则即可。

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

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 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.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

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