DeployEase is a CLI tool that simplifies the deployment of frontend applications to multiple free hosting platforms.
You can install DeployEase globally for system-wide use or as a dev dependency within a project.
To use DeployEase from anywhere in your terminal, install it globally:
npm install -g deployease
yarn global add deployease
pnpm add -g deployease
bun add -g deployease
If you prefer to use DeployEase within a project (e.g., in package.json
scripts), install it as a dev dependency:
npm install --save-dev deployease
yarn add -D deployease
pnpm add -D deployease
bun add -D deployease
Then, you can add a script in package.json
for deployment:
{
"scripts": {
"deploy": "deployease deploy"
}
}
Run it with:
npm run deploy
DeployEase provides a simple command to deploy your frontend projects:
deployease deploy
If a configuration file (vercel.json
) is found, DeployEase will automatically detect and deploy to Vercel.
If no configuration is found, you'll be prompted to confirm deployment to Vercel.
Deploying to Vercel...
Deployment starts immediately.
To manually specify a platform (once supported), use:
deployease deploy --platform <platform-name>
For example:
deployease deploy --platform vercel
To view all deployed projects across platforms (once available), run:
deployease list-projects
Contributions are welcome! Feel free to open issues or submit pull requests.
🚀 Happy Deploying with DeployEase! 🚀