How to install and import paperjs for Angular 2?

1.5k Views Asked by At

I tried installing paperjs by using the command

sudo npm install paper

in my angular app folder. Paper seems to appear in node_modules folder, however when I try to import it using

import { Paper } from '@paper'

it doesn't find paper module. How do I include the paper module in angular2?

2

There are 2 best solutions below

1
On

Following this thread there is no official typescript support yet. However, there is an unofficial typescript definition for paperJS here

3
On

I did the following to get it working:

npm install paper --save
npm install @types/paper --save

In systemjs.comfig.js add a map for paper

map:
    ...

    'paper': 'npm:paper/dist/paper-core.js'
},

In the component

import { PaperScope, Path, Point } from 'paper';