web-dev-qa-db-ja.com

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'
    }
}

[〜#〜] update [〜#〜]バンドル.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キャッチされていないSyntaxError:予期しないトークン<

また、私のJSファイルは実行されません。誰かがそれを修正する何かを提案できますか?

前もって感謝します

26
user5471583

サーバー:

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

…リクエスト内のすべてを無視し、常にindex.htmlのコンテンツを返すように設定されています。

そのため、ブラウザーが/assets/bundle.jsを要求すると、index.htmlが与えられます(これはJavaScriptではないためエラーが発生します)。

パスに注意を払い、適切なコンテンツタイプで適切なコンテンツを提供する必要があります。

これはおそらく、Nodeの静的ファイルサービングモジュール(Googleは node-static になります)を見つける(または置換Node(LighttpdやApache HTTPDなど)。

静的コンテンツだけでなく動的コンテンツも提供したい場合は、 Express が一般的な選択肢です(そして 静的ファイルのサポート )。

24
Quentin

ブラウザの要求に関係なく、サーバーは常に同じ正確なファイルを返します:index.html

表示されているエラーは、HTMLファイルにbundle.jsへの参照があり、要求されたときにindex.htmlのコンテンツとともに返されるためです。

これらのことを心配する必要がないように、Webフレームワークを使用する必要があります。例えば。 エクスプレス

6

すべての種類の静的ファイルを提供する必要があります。 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)
0
Dominic

webpack.config.jsファイルにoutput: {publicPath: '/',}を追加するだけです。

0
Mat Watershed