最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - ParcelJS does not bundle imported js library - Stack Overflow

programmeradmin1浏览0评论

I have a simple NodeJS app (A Cloudflare Worker).

In the main typescript file (index.ts) I import the handler module which has this as the first line: const Monitor = import('ping-monitor')

ping-monitor is a dependency in package.json:

"dependencies": {
    "ping-monitor": "^0.6.2"
  }

Now when I run parcel build src/index.ts the output in the dist has: var $1ZQrD$pingmonitor = require("ping-monitor");

So the contents of ping-monitor are not bundled properly. And when I try to run this locally via wrangler dev (output is dist/worker.js) it plains: Uncaught ReferenceError: require is not defined.

How can I tell ParcelJS to bundle ping-monitor inside the output?

I have a simple NodeJS app (A Cloudflare Worker).

In the main typescript file (index.ts) I import the handler module which has this as the first line: const Monitor = import('ping-monitor')

ping-monitor is a dependency in package.json:

"dependencies": {
    "ping-monitor": "^0.6.2"
  }

Now when I run parcel build src/index.ts the output in the dist has: var $1ZQrD$pingmonitor = require("ping-monitor");

So the contents of ping-monitor are not bundled properly. And when I try to run this locally via wrangler dev (output is dist/worker.js) it plains: Uncaught ReferenceError: require is not defined.

How can I tell ParcelJS to bundle ping-monitor inside the output?

Share Improve this question asked Nov 29, 2021 at 22:34 MahdiMahdi 2,3253 gold badges28 silver badges49 bronze badges 2
  • 1 what syntax is this? const Monitor = import('ping-monitor').... Shouldn't it be const Monitor = require('ping-monitor')? – Samuel Anyanwu Commented Nov 29, 2021 at 22:41
  • I'm not sure. The linter was plaining about require so had to use import there – Mahdi Commented Nov 30, 2021 at 12:32
Add a ment  | 

1 Answer 1

Reset to default 12

By default, parcel won't bundle any dependencies for nodejs build targets. If you want to bundle all dependencies you can use the includeNodeModules option (see docs), like this:

{
   ...
   "main": "dist/worker.js",
   "targets": {
      "main": {
         "includeNodeModules": true
      }
   }
}

(You can also specify "whitelist" of modules to include).

发布评论

评论列表(0)

  1. 暂无评论