New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@funish/bundle

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@funish/bundle

Blazing fast, zero configuration web application bundler based on Parcel

latest
Source
npmnpm
Version
0.0.1-alpha.1
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Funish Bundle Tool

npm version npm license npm downloads

Blazing fast, zero configuration web application bundler based on Parcel.

Usage

Installation

# npm
$ npm install -g @funish/bundle

# Or yarn
$ yarn global add @funish/bundle

Get started

The bundle tool can use any type of file as an entry point, but an HTML or JavaScript file is a good starting point. If you use relative paths to link to the main JavaScript file in the HTML, it will also take care of that for you and replace the reference with the URL of the output file.

<html>
  <body>
    <script src="./index.js"></script>
  </body>
</html>

Development

The bundle tool has a built-in development server that automatically rebuilds your application when you modify your files, and supports hot module replacement for rapid development. Simply point it to your entry file.

# Serve
bundle index.html

# or watch
bundle watch index.html

Build

As in development, to build the final product, simply point it to your entry file.

bundle build index.html

Reference

  • Parcel - under the MIT license

License

FAQs

Package last updated on 30 Jul 2020

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