我想以編程方式打印一些pdf文檔。我現在想花幾個小時來使this PDFkit library與webpack一起工作。如何在webpack中使用PDFkit庫?
我已經走了形式:
Can't resolve 'fs' in ..
到
fs.readFileSync is not a function
然後警告
[BABEL] Note: The code generator has deoptimised the styling of "E:/MyProjects/accountingsystem/node_modules/brotli/dec/dictionary-da
ta.js" as it exceeds the max of "500KB".
然後
require is not defined
- 我卡在這裏。所有這些錯誤都來自圖書館本身。
我剛纔一個文件 - app.js只有代碼一行,這就是:
const PDFDocument = require('pdfkit');
我最後webpack.config.js
看起來是這樣的:
module.exports = {
// devtool: 'source-map',
entry: './src/app.js',
output: {
path: path.resolve (__dirname, "dist"),
filename: "bundle.js"
},
// node: {
// console: true,
// fs: 'empty',
// net: 'empty',
// tls: 'empty'
// },
// i've added 'target' - following the advice form some github comments.
target: 'node',
module : {
rules : [
{ test: /\.js$/, loader: 'babel-loader' },
{
test : /\.html$/,
use : [ 'html-loader' ]
},
// then i've added this 2 loaders also:
{ test: /\.json$/, loader: 'json-loader' },
{ test: /pdfkit|png-js/, loader: "transform-loader?brfs" }
]
},
plugins:[
new HtmlWebpackPlugin ({
template : `src/app.html`
})
],
};
這實際上是一個1行的應用程序,我現在打了幾個小時的牆。我看到很多用戶在使用fs
核心模塊和webpack
時遇到了問題 - 我嘗試了所有我能找到的解決方案。它能有多難?這裏究竟發生了什麼?感謝任何見解。