Gathering detailed insights and metrics for @veho-tech/deploy-meteor
Gathering detailed insights and metrics for @veho-tech/deploy-meteor
Gathering detailed insights and metrics for @veho-tech/deploy-meteor
Gathering detailed insights and metrics for @veho-tech/deploy-meteor
small Node app for (re)configuring a Meteor deployment with pm2
npm install @veho-tech/deploy-meteor
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
16 Commits
19 Watchers
1 Branches
4 Contributors
Updated on Jan 27, 2023
Latest Version
1.0.5
Package Id
@veho-tech/deploy-meteor@1.0.5
Size
143.40 kB
NPM Version
4.5.0
Node Version
6.10.2
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
This is a simple command line Node app that helps you deploy/update a Meteor application.
You need to install pm2 globally and have the server tarball,
that meteor build
creates, extracted already.
Also, we assume that you have your Meteor settings stored inside your Meteor app's assets. (You might want to check out git-crypt if you have sensitive information in your settings file.)
1npm i -g @veho-tech/deploy-meteor
Assuming you have the following setup:
extracted server tarball in /home/my-fancy-app/bundle
an existing/prefilled pm2 config file in /home/my-fancy-app/pm2-config.json
with a content looking like this:
1{ 2 "name": "my-fancy-app", 3 "env": { 4 "PORT": 3000, 5 "HTTP_FORWARDED_COUNT": 1, 6 "MONGO_URL": "mongodb://localhost:27017/my_fancy_app?replicaSet=rs0", 7 "MONGO_OPLOG_URL": "mongodb://localhost:27017/local?replicaSet=rs0&authSource=my_fancy_app", 8 "ROOT_URL": "https://my-fancy-app.com", 9 "MAIL_URL": "smtp://bot%40my-fancy-app.com:s3cr3t@smtp.mailgun.org:587" 10 } 11}
your settings file is located inside your Meteor project at private/settings.json
1{ 2 "AWSAccessKeyId": "test", 3 "AWSSecretAccessKey": "test", 4 "AWSBucket": "test", 5 "AWSRegion": "test" 6}
If you then run
1npm i -g @veho-tech/deploy-meteor 2deploy-meteor --config=/home/my-fancy-app/pm2-config.json --settings=settings.json /home/my-fancy-app/bundle
your config file /home/my-fancy-app/pm2-config.json
will be updated like this:
1{ 2 "name": "my-fancy-app", 3 "cwd": "/home/my-fancy-app/bundle", 4 "script": "main.js", 5 "env": { 6 "PORT": 3000, 7 "HTTP_FORWARDED_COUNT": 1, 8 "MONGO_URL": "mongodb://localhost:27017/my_fancy_app?replicaSet=rs0", 9 "MONGO_OPLOG_URL": "mongodb://localhost:27017/local?replicaSet=rs0&authSource=my_fancy_app", 10 "ROOT_URL": "https://my-fancy-app.com", 11 "MAIL_URL": "smtp://bot%40my-fancy-app.com:s3cr3t@smtp.mailgun.org:587", 12 "METEOR_SETTINGS": "{\"AWSAccessKeyId\":\"test\",\"AWSSecretAccessKey\":\"test\",\"AWSBucket\":\"test\",\"AWSRegion\":\"test\"}" 13 } 14}
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/16 approved changesets -- score normalized to 0
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
97 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More