Skip to content

Instantly share code, notes, and snippets.

@ljayz
Created July 12, 2018 04:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ljayz/f56e8f0020e9d5f543f4486ea9cf9361 to your computer and use it in GitHub Desktop.
Save ljayz/f56e8f0020e9d5f543f4486ea9cf9361 to your computer and use it in GitHub Desktop.
loading meteor npm package with plugins (moment and moment-timer)
//client/main.js
import moment from 'moment';
import 'moment-timer';
Template.body.onRendered(function(){
new moment.duration(1000).timer({ start: true, loop: true }, () => {
console.log('moment timer run');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment