I am trying to use paper.js with webpack using react-starter-kit .
Just for reference, I had to install json-loader and node -loader , also I had to add node to the webpack configuration to get rid of build errors like this
ERROR in ./~/paper/dist/paper-node.js
Module not found: Error: Cannot resolve module 'fs' in /home/bojan/www/react/MyApp/node_modules/paper/dist
@ ./~/paper/dist/paper-node.js 4808:3-16 10779:10-23 12253:10-23
Here is what my webpack.config.js looks like
var config = {
...
resolve: {
extensions: ['', '.webpack.js', '.web.js', '.js', '.jsx', '.json', '.node']
},
module: {
loaders: [
{
test: /\.json$/,
loader: "json-loader"
},
{
test: /\.node$/,
loader: "node-loader"
},
...
]
},
node: {
child_process: 'empty',
console: 'empty',
dgram: 'empty',
dns: 'empty',
fs: 'empty',
net: 'empty',
tls: 'empty'
}
};
I still get a warning during gulp build, but:
WARNING in ./~/paper/dist/paper-node.js
require.extensions is not supported by webpack. Use a loader instead.
WARNING in ./~/paper/dist/paper-node.js
Critical dependencies:
12263:19-26 require function is used in a way in which dependencies cannot be statically extracted
@ ./~/paper/dist/paper-node.js 12263:19-26
WARNING in ./~/paper/~/jsdom/~/acorn-globals/~/acorn/dist/walk.js
Critical dependencies:
1:503-510 This seems to be a pre-built javascript file. Though this is possible, it not recommended. Try to require the original source to get better results.
@ ./~/paper/~/jsdom/~/acorn-globals/~/acorn/dist/walk.js 1:503-510
WARNING in ./~/paper/~/jsdom/~/acorn-globals/~/acorn/dist/acorn.js
Critical dependencies:
1:478-485 This seems to be a pre-built javascript file. Though this is possible, it not recommended. Try to require the original source to get better results.
@ ./~/paper/~/jsdom/~/acorn-globals/~/acorn/dist/acorn.js 1:478-485
WARNING in ./~/paper/~/request/~/hawk/~/hoek/lib/index.js
Critical dependencies:
403:34-60 the request of a dependency is an expression
@ ./~/paper/~/request/~/hawk/~/hoek/lib/index.js 403:34-60
I also get an error in the browser console:
Uncaught Error: Cannot open /home/bojan/www/react/MyApp/node_modules/paper/node_modules/canvas/build/Release/canvas.node: TypeError: process.dlopen is not a function
(anonymous function) @ canvas.node:1
map../paper-core @ app.js:95332
__webpack_require__ @ bootstrap 62fa91d09bcc96ef0556:19
(anonymous function) @ bindings.js:2
__webpack_require__ @ bootstrap 62fa91d09bcc96ef0556:19
(anonymous function) @ canvas.js:12
__webpack_require__ @ bootstrap 62fa91d09bcc96ef0556:19
(anonymous function) @ paper-node.js:10243
(anonymous function) @ paper-node.js:33
(anonymous function) @ paper-node.js:12290
__webpack_require__ @ bootstrap 62fa91d09bcc96ef0556:19
(anonymous function) @ CbPaper.js:7
Object.defineProperty.value @ CbPaper.js:146
__webpack_require__ @ bootstrap 62fa91d09bcc96ef0556:19
Object.defineProperty.value @ App.js:12
__webpack_require__ @ bootstrap 62fa91d09bcc96ef0556:19
exports.TYPES.INTEGER @ app.js:5
__webpack_require__ @ bootstrap 62fa91d09bcc96ef0556:19
obj.__esModule.default @ bootstrap 62fa91d09bcc96ef0556:39
(anonymous function) @ bootstrap 62fa91d09bcc96ef0556:39
Any ideas? I am new to the whole webpack / node ecosystem, so I might be doing something wrong.