In any service of ionic3 app
import * as jsnx from 'jsnetworkx';
the ouput error is this
Uncaught (in promise): Error: Cannot find module "lodash/lang/isPlainObject" Error: Cannot find module "lodash/lang/isPlainObject" at webpackMissingModule
I tried to declare it this way
import jsnx = require('jsnetworkx');
and the error is this
Uncaught (in promise): ReferenceError: jsnx is not defined ReferenceError: jsnx is not defined at
both packages are installed
...,
"jsnetworkx": "^0.3.4",
"lodash": "^4.17.4",
...
If any know how to do that works in angular 4 o ionic?
The library with node work fine.