Javascript devs, what NPM package do you recommend...
# random
m
Javascript devs, what NPM package do you recommend for creating .ical (calendar invite) files? Hopefully something that does NOT require momentJS
e
I would suggest to do a native JS function using your preferred library, I think calendar invite file is a just a text file with .ical extension and with 4-5 lines of dates in certain formats so I don’t it will take much time to write the custom function.
b
t
We've replaced moment with luxon for time manipulation and timeone adjustments. Not sure about ical, but my understanding is that calendar invitations are a straightforward affair after that.
m
Thanks everyone. I finally ended up using https://www.npmjs.com/package/datebook
👍 1