How can I import a module, e.g. pikaday from another one, e.g. handsontable in angularjs from the node_modules?
import {pikaday} from handsontable
doesn't seem to work.
angular.module('YourApp', ['ngHandsontable','pikaday']);
import { Pikaday } from 'picaday', you can Read more here
import 'pikaday' ? It still seems to not be found (after also importing it). I'm getting this error: Uncaught Error: Cannot find module 'pikaday'