Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

parcel-reporter-zephyr

Package Overview
Dependencies
Maintainers
4
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parcel-reporter-zephyr

Parcel reporter for Zephyr

latest
Source
npmnpm
Version
0.0.59
Version published
Weekly downloads
172
-69.98%
Maintainers
4
Weekly downloads
 
Created
Source

Parcel Reporter Zephyr

Zephyr Cloud | Zephyr Docs | Discord | Twitter | LinkedIn

Zephyr Logo

A Parcel reporter plugin for deploying applications with Zephyr Cloud. This plugin automatically handles the deployment process during your Parcel build.

Installation

# 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

Usage

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"]
}

Programmatic Usage

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();

Configuration

The plugin works out of the box with minimal configuration. It will automatically:

  • Collect build assets and metadata
  • Upload to Zephyr Cloud during the build process
  • Enable deployment capabilities for your application

Features

  • 🚀 Automatic deployment during build
  • 📦 Asset optimization and caching
  • 🔧 Zero-config setup
  • 📊 Build analytics and monitoring
  • 🌐 Global CDN distribution

Getting Started

  • Install the plugin in your Parcel project
  • Add it to your .parcelrc configuration
  • Build your application as usual with parcel build
  • Your app will be automatically deployed to Zephyr Cloud

Requirements

  • Parcel 2.x or higher
  • Node.js 14 or higher
  • Zephyr Cloud account (sign up at zephyr-cloud.io)

Contributing

We welcome contributions! Please read our contributing guidelines for more information.

License

Licensed under the Apache-2.0 License. See LICENSE for more information.

FAQs

Package last updated on 16 Sep 2025

Did you know?

Socket

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.

Install

Related posts