I am wanting to use momentjs with meteor. This is an npm package, so from what I understand, it cannot be used with meteor because meteor uses it\'s own package system. So
The question was asked 3 years ago, at that time there was no official package from atmosphere. Since the question was asked things changed and I point out when the package was added to meteor repos.
Install the official package from atmosphere
meteor add momentjs:moment
if you are using typescript, just
import * as moment from "moment/moment";
then in your code
let date = moment().format('YYYY MM DD');