[SOLVED] How we can resuscitate a 1.2.1 Meteor version?

I’m trying to run a 1.2.1 Meteor project, but I’m getting errors when downloading the libraries:

PS > meteor --version
Meteor 1.2.1

meteor run
[[[[[ ~\D\ ]]]]]

=> Started proxy.
=> Meteor 2.7.1 is available. Update this project with ‘meteor update’.
=> Started MongoDB.
=> Errors prevented startup:

While downloading abhiaiyer:meteor-twilio@0.0.5…:
error: CERT_HAS_EXPIRED

While downloading accounts-base@1.2.2…:
error: CERT_HAS_EXPIRED

While downloading accounts-facebook@1.0.6…:
error: CERT_HAS_EXPIRED

While downloading accounts-oauth@1.1.8…:
error: CERT_HAS_EXPIRED

Any help will be appreciated.

Thank you!

@joalterego try to export following variable and then start meteor

NODE_TLS_REJECT_UNAUTHORIZED=0

Setting $env:NODE_TLS_REJECT_UNAUTHORIZED=0 on Windows worked.

Thank you very much, sir!

1 Like