节点 JS 和 Webpack 意外令牌 <
Node JS and Webpack Unexpected token <
我开始学习 Node JS。
这是我的文件。
index.html
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="app">
<h1>Hello<h1>
</div>
<script src='assets/bundle.js'></script>
</body>
</html>
app.js
var http = require("http"),
path = require('path')
fs = require("fs"),
colors = require('colors'),
port = 3000;
var Server = http.createServer(function(request, response) {
var filename = path.join(__dirname, 'index.html');
fs.readFile(filename, function(err, file) {
if(err) {
response.writeHead(500, {"Content-Type": "text/plain"});
response.write(err + "\n");
response.end();
return;
}
response.writeHead(200);
response.write(file);
response.end();
});
});
Server.listen(port, function() {
console.log(('Server is running on http://localhost:'+ port + '...').cyan);
webpack.config.js
module.exports = {
entry: './src/index.js',
output: {
path: __dirname + '/assets',
filename: 'bundle.js'
}
}
更新
bundle.js
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports) {
alert('Hello');
/***/ }
/******/ ]);
因此,当我点击 app.js 并访问地址 (localhost:3000) 时,我在控制台中收到错误消息。
bundle.js:1 Uncaught SyntaxError: Unexpected token <
我的 JS 文件也没有 运行。
有人可以建议修复它吗?
提前致谢
无论浏览器请求什么,您的服务器将始终return 完全相同的文件:index.html
.
您看到的错误是因为您的 HTML 文件引用了 bundle.js
,当请求时,return 与 index.html
的内容一起编辑.
你应该使用网络框架,这样你就不必担心这些事情了。例如。 Express.
您的服务器:
var Server = http.createServer(function(request, response) {
var filename = path.join(__dirname, 'index.html');
… 被配置为忽略请求中的所有内容并始终 return index.html
.
的内容
因此,当浏览器请求 /assets/bundle.js
时,它会得到 index.html
(并且会出错,因为那不是 JavaScript)。
您需要注意路径并使用适当的内容类型提供适当的内容。
这可能最好通过为 Node 找到一个静态文件服务模块(Google 出现 node-static)(或用 Lighttpd 或 Apache HTTPD 之类的东西替换 Node)来完成。
如果您想同时提供动态内容和静态内容,那么 Express is a popular choice (and has support for static files)。
您需要提供各种静态文件,例如https://github.com/expressjs/serve-static#serve-files-with-vanilla-nodejs-http-server
var finalhandler = require('finalhandler')
var http = require('http')
var serveStatic = require('serve-static')
// Serve up public/ftp folder
var serve = serveStatic(__dirname)
// Create server
var server = http.createServer(function(req, res){
var done = finalhandler(req, res)
serve(req, res, done)
})
// Listen
server.listen(process.ENV.port || 3000)
快递用户:
让节点服务器知道您的静态文件
的位置
注意这一行 >> app.use(express.static('public'))
//server.js
const express = require('express')
const app = express()
// serve static assets from the public folder in project root
app.use(express.static('public'))
//
app.listen(8080, () => console.log('listening...'))
DOCS - https://expressjs.com/en/starter/static-files.html
祝你好运。
只需在 webpack.config.js 文件中添加 output: {publicPath: '/',}
。
我开始学习 Node JS。
这是我的文件。
index.html
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="app">
<h1>Hello<h1>
</div>
<script src='assets/bundle.js'></script>
</body>
</html>
app.js
var http = require("http"),
path = require('path')
fs = require("fs"),
colors = require('colors'),
port = 3000;
var Server = http.createServer(function(request, response) {
var filename = path.join(__dirname, 'index.html');
fs.readFile(filename, function(err, file) {
if(err) {
response.writeHead(500, {"Content-Type": "text/plain"});
response.write(err + "\n");
response.end();
return;
}
response.writeHead(200);
response.write(file);
response.end();
});
});
Server.listen(port, function() {
console.log(('Server is running on http://localhost:'+ port + '...').cyan);
webpack.config.js
module.exports = {
entry: './src/index.js',
output: {
path: __dirname + '/assets',
filename: 'bundle.js'
}
}
更新 bundle.js
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports) {
alert('Hello');
/***/ }
/******/ ]);
因此,当我点击 app.js 并访问地址 (localhost:3000) 时,我在控制台中收到错误消息。
bundle.js:1 Uncaught SyntaxError: Unexpected token <
我的 JS 文件也没有 运行。 有人可以建议修复它吗?
提前致谢
无论浏览器请求什么,您的服务器将始终return 完全相同的文件:index.html
.
您看到的错误是因为您的 HTML 文件引用了 bundle.js
,当请求时,return 与 index.html
的内容一起编辑.
你应该使用网络框架,这样你就不必担心这些事情了。例如。 Express.
您的服务器:
var Server = http.createServer(function(request, response) { var filename = path.join(__dirname, 'index.html');
… 被配置为忽略请求中的所有内容并始终 return index.html
.
因此,当浏览器请求 /assets/bundle.js
时,它会得到 index.html
(并且会出错,因为那不是 JavaScript)。
您需要注意路径并使用适当的内容类型提供适当的内容。
这可能最好通过为 Node 找到一个静态文件服务模块(Google 出现 node-static)(或用 Lighttpd 或 Apache HTTPD 之类的东西替换 Node)来完成。
如果您想同时提供动态内容和静态内容,那么 Express is a popular choice (and has support for static files)。
您需要提供各种静态文件,例如https://github.com/expressjs/serve-static#serve-files-with-vanilla-nodejs-http-server
var finalhandler = require('finalhandler')
var http = require('http')
var serveStatic = require('serve-static')
// Serve up public/ftp folder
var serve = serveStatic(__dirname)
// Create server
var server = http.createServer(function(req, res){
var done = finalhandler(req, res)
serve(req, res, done)
})
// Listen
server.listen(process.ENV.port || 3000)
快递用户:
让节点服务器知道您的静态文件
的位置注意这一行 >> app.use(express.static('public'))
//server.js
const express = require('express')
const app = express()
// serve static assets from the public folder in project root
app.use(express.static('public'))
//
app.listen(8080, () => console.log('listening...'))
DOCS - https://expressjs.com/en/starter/static-files.html
祝你好运。
只需在 webpack.config.js 文件中添加 output: {publicPath: '/',}
。