How to reference a third-party npm module?

I installed moment.js using npm install moment --save, and now it is in my node_modules folder, but I don't know how to reference it in my application.

Q) How can I use moment.js in my Ionic 2 application when I installed it using npm?

Here's a shortened version of my app.ts:

import {App, IonicApp, Platform, Modal, Events, Alert, MenuController} from 'ionic-angular';
import {Type} from 'angular2/core';
import {OnInit, OnDestroy} from 'angular2/core';

// native stuff
import {Keyboard} from 'ionic-native';


// tried this but it can't find the module
//import {moment} from 'moment';

@App({
  templateUrl: 'build/app.html',
  config: {}, // http://ionicframework.com/docs/v2/api/config/Config/
  providers: []
})
class MyApp {
  isLoadingData: boolean = false;
  rootPageToExitOn: string;
  rootPage: Type;
  pages: Array<{icon: string, title: string, component: Type}>;
  showMenu: boolean;

  constructor(
    private app: IonicApp,
    private platform: Platform,
    private menu: MenuController,
    private _events: Events
  ) {
    this.initializeApp();

    // how to use moment() here ...?

  }
}
+4
source share
1 answer

The following worked for me.

First set the type definitions for the moment.

typings install moment --save

(Note: NOT - custom)

Then, to get around the lack of proper exports:

import * as moment from 'moment';

From: fooobar.com/questions/56123 / ...

+3
source

All Articles