Need moment timezone

The moment library is great to include in the npm modules but it assumes UTC and my customers are in the NA Eastern timezone. I need to know the exact time. Sure I can subtract 5hrs most of the time but this doesn’t work when we switch from daily savings to standard time and back. Thus I need Moment Timezone | Home.

moment-timezone was added and will be available later today (check the npm install menu)
In the future please request missing modules with the link at the bottom on npm install menu

You can also check the full list of installed modules here:
https://www.wix.com/code/reference/npm-modules.html

Note it updates more slowly then the actual modules on the install menu

For anybody who would like to use moment-timezone, this is how you must require it:
var moment = require (‘moment-timezone’);
Note you need not also require the moment library itself - it comes for free with moment-timezone.

// Handy utility method:
export function getMoment() {
return moment().tz(“America/Toronto”);
}

can someone please provide info on how I add the momentjs library to my project?