
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
exp-deploy-cli
Advanced tools
An easy way to deploy different environment configurations using Expo & exp CLI
We strongly recommend moving forward with Expo's official supported implementation!
Right now Expo doesn't support different deploy environments like staging and production. This is a simple tool to help mimic that environment by creating a copy of your app.json and adding a suffix to stuff like name and slug.
Expo is working on supporting their own deployment environments. As soon as its released I'll update the repo to take you there instead
Orchard uses this on an daily basis to deploy their different environments
exp-deploy requires a config folder with a copy of app.json. Create the following:
config/exp-development.jsonconfig/exp-production.jsonconfig object next to expo within app.json:
"config": {
"apiUrl": "https://api.mysite.com",
"sentryApiKey": "xyz"
},
"expo": {
"name": "MyAppName",
"privacy": "unlisted",
"slug": "my-app-name",
"sdkVersion": "1.0.0",
"scheme": "my-app-name",
"version": "1.0.0",
}
exp-deploy --production will now do the following:
config/exp-production.json over into app.jsonexp publishyarn global add exp-deploy-cli
npm install -g exp-deploy-cli
Usage: exp-deploy [command]
Commands:
config Initial Config Setup
Options:
--help Show help [boolean]
Examples:
exp-deploy config
exp-deploy --env production
exp-deploy --env staging
Since Expo doesn't give you access to Config via Constants.manifest, you can import the json file directly:
import App from './app.json'
const API_URL = App.config.apiUrl
exp configexp deployexp releasesexp rollbackconfig folder and place exp-development.json and exp-production.jsonapp.json create a config object to store your api keys, etc. inexp-deploy config which will:
config folder. If doesn't exist, create itapp.json into exp-development.json and exp-production.jsonexp-deploy --production which will:
releases.json fileexp-deploy releases which will:
releases.json with every released version
exp-deploy rollback which will:
releases.json and asks you interactively to choose a version to roll back toFAQs
An easy way to deploy different environment configurations using Expo & exp CLI
We found that exp-deploy-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.