如何用TypeScript实现WebSocket 4.0的长尾词热更新功能?

2026-04-08 19:561阅读0评论SEO资源
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计447个文字,预计阅读时间需要2分钟。

如何用TypeScript实现WebSocket 4.0的长尾词热更新功能?

最近搭建了一个webpack4+typescript的开发环境,记录了一些配置细节。环境搭建相对顺利,但持续更新确实是个烦恼。本地环境基于webpack-dev-server搭建,配置如下:

jsonoutput: { publicPath: '/dist/'}

最近搞了一个webpack4+typescript的开发环境,折腾了很久现在记录一下。。。。

本身环境比较好搞,但是热更新是个麻烦事儿

本环境是基于webpack-dev-server搭建的

output: { publicPath: '/dist', path: path.resolve(__dirname, 'dist'), filename: 'ljax.bundle.js', hotUpdateChunkFilename: 'hot/hot-update.js', hotUpdateMainFilename: 'hot/hot-update.json' },

publicPath是必须的字段,不添加HRM就没有效果

在热更新的时候会出现很多hot-update.js和hot-update.json的细碎文件

如何用TypeScript实现WebSocket 4.0的长尾词热更新功能?

使用hotUpdateChunkFilename和hotUpdateMainFilename指定他们只生成一个文件,目前没有找到不生成这两个文件的办法,如果哪位大佬知道的话请告知。

plugins: [ new HtmlWebpackPlugin({ title: '模块热替换', template: './public/index.html' }), new webpack.HotModuleReplacementPlugin(), // 启动输出清理 new FriendlyErrorsWebpackPlugin({ compilationSuccessInfo: { messages: [`You application is running here ${HTTPS ? '${HOST}:${PORT}`], // notes: ['Some additional notes to be displayed upon successful compilation'], clearConsole: true }, }) ],

HotModuleReplacementPlugin是热更新必不可少的插件

contentBase: __dirname, quiet: true, compress: true, port: PORT, host: HOST, ${HOST}:${PORT}`], // notes: ['Some additional notes to be displayed upon successful compilation'], clearConsole: true }, }) ], devServer: { contentBase: __dirname, quiet: true, compress: true, port: PORT, host: HOST, https: HTTPS, // hot: true, // hotOnly: true, // inline: true, open: true, overlay: true, openPage: './dist/index.html' } }

package.json

{ "name": "ljax", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "watch": "webpack -w", "dev-server": "webpack-dev-server", "serve": "start yarn dev-server && yarn watch" }, "author": "", "license": "ISC", "dependencies": { "friendly-errors-webpack-plugin": "^1.7.0", "html-webpack-plugin": "^3.2.0", "ts-loader": "^6.0.4", "typescript": "^3.5.3", "webpack": "^4.39.1", "webpack-dev-server": "^3.7.2" }, "devDependencies": { "webpack-cli": "^3.3.6" } }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。

本文共计447个文字,预计阅读时间需要2分钟。

如何用TypeScript实现WebSocket 4.0的长尾词热更新功能?

最近搭建了一个webpack4+typescript的开发环境,记录了一些配置细节。环境搭建相对顺利,但持续更新确实是个烦恼。本地环境基于webpack-dev-server搭建,配置如下:

jsonoutput: { publicPath: '/dist/'}

最近搞了一个webpack4+typescript的开发环境,折腾了很久现在记录一下。。。。

本身环境比较好搞,但是热更新是个麻烦事儿

本环境是基于webpack-dev-server搭建的

output: { publicPath: '/dist', path: path.resolve(__dirname, 'dist'), filename: 'ljax.bundle.js', hotUpdateChunkFilename: 'hot/hot-update.js', hotUpdateMainFilename: 'hot/hot-update.json' },

publicPath是必须的字段,不添加HRM就没有效果

在热更新的时候会出现很多hot-update.js和hot-update.json的细碎文件

如何用TypeScript实现WebSocket 4.0的长尾词热更新功能?

使用hotUpdateChunkFilename和hotUpdateMainFilename指定他们只生成一个文件,目前没有找到不生成这两个文件的办法,如果哪位大佬知道的话请告知。

plugins: [ new HtmlWebpackPlugin({ title: '模块热替换', template: './public/index.html' }), new webpack.HotModuleReplacementPlugin(), // 启动输出清理 new FriendlyErrorsWebpackPlugin({ compilationSuccessInfo: { messages: [`You application is running here ${HTTPS ? '${HOST}:${PORT}`], // notes: ['Some additional notes to be displayed upon successful compilation'], clearConsole: true }, }) ],

HotModuleReplacementPlugin是热更新必不可少的插件

contentBase: __dirname, quiet: true, compress: true, port: PORT, host: HOST, ${HOST}:${PORT}`], // notes: ['Some additional notes to be displayed upon successful compilation'], clearConsole: true }, }) ], devServer: { contentBase: __dirname, quiet: true, compress: true, port: PORT, host: HOST, https: HTTPS, // hot: true, // hotOnly: true, // inline: true, open: true, overlay: true, openPage: './dist/index.html' } }

package.json

{ "name": "ljax", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "watch": "webpack -w", "dev-server": "webpack-dev-server", "serve": "start yarn dev-server && yarn watch" }, "author": "", "license": "ISC", "dependencies": { "friendly-errors-webpack-plugin": "^1.7.0", "html-webpack-plugin": "^3.2.0", "ts-loader": "^6.0.4", "typescript": "^3.5.3", "webpack": "^4.39.1", "webpack-dev-server": "^3.7.2" }, "devDependencies": { "webpack-cli": "^3.3.6" } }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。