我在使用包裹的中间件时遇到麻烦。
它总是显示“找不到条目”!
我在做什么错了?
这是代码:
/* ----- 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);
});