Using 'import' instead of require?
Closed this issue · 2 comments
Hi,
Trying to use import
instead of require for the module, but getting an error. I've tried
import * as psl from 'psl'
but to no avail. Any input?
Hi @donjae,
- Are you getting any error messages in particular?
- What environment are you running in (ie: web browser, Node.js, ...) and what version?
- What version of
psl
are you using? - Are you using a transpiler (ie: Babel)?
As far as I know ES6 modules are not yet available in Node.js or any major browser. Are you able to import
other modules? Have you tried requiring the module instead of importing it?
Thanks for the response. I actually realized it's an issue with angular2/typescript dealing with 'typing' definitions. And unfortunately, typescript has some kinks where even when I tried using something like import psl = require('psl')
[as recommended in the docs] still created some issues.
I'll be using this module for my backend too, which has babel. But it should it be fine.