A Rollup plugin for deploying applications with Zephyr Cloud. This plugin enables seamless deployment of your Rollup-built applications to Zephyr's global edge network.
# npm
npm install --save-dev rollup-plugin-zephyr
# yarn
yarn add --dev rollup-plugin-zephyr
# pnpm
pnpm add --dev rollup-plugin-zephyr
# bun
bun add --dev rollup-plugin-zephyr
Add the plugin to your Rollup configuration:
// rollup.config.js
import { zephyrPlugin } from 'rollup-plugin-zephyr';
export default {
input: 'src/main.js',
output: {
dir: 'dist',
format: 'es',
},
plugins: [
// ... other plugins
zephyrPlugin(),
],
};
// rollup.config.mjs
import { zephyrPlugin } from 'rollup-plugin-zephyr';
export default {
input: 'src/main.js',
output: {
dir: 'dist',
format: 'es',
},
plugins: [
zephyrPlugin({
// Configuration options
}),
],
};
// rollup.config.ts
import { defineConfig } from 'rollup';
import { zephyrPlugin } from 'rollup-plugin-zephyr';
export default defineConfig({
input: 'src/main.ts',
output: {
dir: 'dist',
format: 'es',
},
plugins: [zephyrPlugin()],
});
- 🚀 Automatic deployment during build
- 📦 Asset optimization and bundling
- 🔧 Zero-config setup
- 📊 Build analytics and monitoring
- 🌐 Global CDN distribution
- ⚡ Edge caching and optimization
- Install the plugin in your Rollup project
- Add it to your Rollup configuration
- Build your application as usual with
rollup -c
- Your app will be automatically deployed to Zephyr Cloud
Add these scripts to your package.json
:
{
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"build:prod": "NODE_ENV=production rollup -c"
}
}
- Rollup 2.x or higher
- Node.js 14 or higher
- Zephyr Cloud account (sign up at zephyr-cloud.io)
We welcome contributions! Please read our contributing guidelines for more information.
Licensed under the Apache-2.0 License. See LICENSE for more information.