
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
parcel-reporter-zephyr
Advanced tools
Zephyr Cloud | Zephyr Docs | Discord | Twitter | LinkedIn
A Parcel reporter plugin for deploying applications with Zephyr Cloud. This plugin automatically handles the deployment process during your Parcel build.
# npm
npm install --save-dev parcel-reporter-zephyr
# yarn
yarn add --dev parcel-reporter-zephyr
# pnpm
pnpm add --dev parcel-reporter-zephyr
# bun
bun add --dev parcel-reporter-zephyr
The easiest way to use the Zephyr Parcel plugin is to add it to your .parcelrc
file:
// .parcelrc
{
"extends": "@parcel/config-default",
"reporters": ["...", "parcel-reporter-zephyr"]
}
If you're using Parcel programmatically, you can add the plugin directly:
// build.js
const { Parcel } = require('@parcel/core');
const ZephyrReporter = require('parcel-reporter-zephyr');
async function build() {
const bundler = new Parcel({
entries: ['src/index.html'],
defaultConfig: '@parcel/config-default',
reporters: ['...', ZephyrReporter],
});
await bundler.run();
}
build();
The plugin works out of the box with minimal configuration. It will automatically:
.parcelrc
configurationparcel build
We welcome contributions! Please read our contributing guidelines for more information.
Licensed under the Apache-2.0 License. See LICENSE for more information.
FAQs
Parcel reporter for Zephyr
The npm package parcel-reporter-zephyr receives a total of 167 weekly downloads. As such, parcel-reporter-zephyr popularity was classified as not popular.
We found that parcel-reporter-zephyr demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.