Node JS和Webpack意外的令牌<

26 javascript node.js webpack

我已经开始研究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>
Run Code Online (Sandbox Code Playgroud)

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);
Run Code Online (Sandbox Code Playgroud)

webpack.config.js

module.exports = {
    entry: './src/index.js',
    output: {
        path: __dirname + '/assets',
        filename: 'bundle.js'
    }
}
Run Code Online (Sandbox Code Playgroud)

更新 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');

/***/ }
/******/ ]);
Run Code Online (Sandbox Code Playgroud)

所以,当我点击app.js并访问地址(localhost:3000)时,我在控制台中收到错误.

bundle.js:1 Uncaught SyntaxError:意外的令牌<

我的JS文件也没有运行.有人可以建议解决一些问题吗?

提前致谢

Que*_*tin 24

你的服务器:

var Server = http.createServer(function(request, response) {
  var filename = path.join(__dirname, 'index.html');
Run Code Online (Sandbox Code Playgroud)

...被配置为忽略请求中的所有内容并始终返回内容index.html.

因此,当浏览器请求/assets/bundle.js它时index.html(和错误,因为它不是JavaScript).

您需要注意路径并使用适当的内容类型提供适当的内容.

这可能最好通过为Node 找到一个静态文件服务模块(Google打开节点静态)(或用Lighttpd或Apache HTTPD替换Node)来完成.

如果您想提供动态内容以及静态内容,那么Express是一种流行的选择(并且支持静态文件).


Dmy*_*nko 6

无论浏览器请求什么,您的服务器将始终返回相同的文件:index.html.

您看到的错误是因为您的HTML文件有一个引用bundle.js,当被请求时,返回的内容为index.html.

您应该使用Web框架,这样您就不必担心这些事情.如快递.


Aka*_*ash 5

快递用户:

让 Node 服务器知道你的静态文件位置

注意这一行>> 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...'))
Run Code Online (Sandbox Code Playgroud)

文档- https://expressjs.com/en/starter/static-files.html

祝你好运。