包裹中间件

时间:2018-11-12 17:25:42

标签: javascript parceljs

我在使用包裹的中间件时遇到麻烦。

它总是显示“找不到条目”!

我在做什么错了?

这是代码:

/* ----- Package Imports ----- */
import express from 'express';
import chalk from 'chalk';
import path from 'path';
/* ----- File Imports -----*/
import tools from './tools';

/* ----- End Imports -----*/
import Bundler from 'parcel-bundler';
const bundler = new Bundler('help.html', {});

/*<-------------- Start -------------->*/
const app = express();
app.use(bundler.middleware());

app.listen(2120, () => {
  console.log(chalk.white.bgRed('Server start...'));
  tools.loop(() => console.log(''), 2);
});

0 个答案:

没有答案