All Projects → gaoxiaoliangz → wparcel

gaoxiaoliangz / wparcel

Licence: other
A webpack-based parcel-like web application bundler

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to wparcel

Denopack
The bundling and minification toolset, made for Deno
Stars: ✭ 81 (+80%)
Mutual labels:  bundler
Enb
Tool for building web projects, BEM bundler.
Stars: ✭ 136 (+202.22%)
Mutual labels:  bundler
Fastpack
Pack JS code fast & easy
Stars: ✭ 2,278 (+4962.22%)
Mutual labels:  bundler
Shortstack
🥞 minimal Rollup + PostCSS modern syntax starter template
Stars: ✭ 94 (+108.89%)
Mutual labels:  bundler
Instapack
All-in-one TypeScript and Sass compiler for web applications! 📦 🚀
Stars: ✭ 131 (+191.11%)
Mutual labels:  bundler
Velcro
A set of tools and libraries for stitching together modules and code in highly dynamic browser environments
Stars: ✭ 159 (+253.33%)
Mutual labels:  bundler
Neuron.js
A Full Feature CommonJS Module Manager, Dependency Graph Handler and Loader for Browsers
Stars: ✭ 66 (+46.67%)
Mutual labels:  bundler
Bundler
Bundler support for Capistrano 3.x
Stars: ✭ 216 (+380%)
Mutual labels:  bundler
Wean
🍀 小程序构建工具 ♂ 重新实现小程序标准 ♀ 小程序 => web
Stars: ✭ 125 (+177.78%)
Mutual labels:  bundler
Bundler
🎁 Android Intent & Bundle extensions that insert and retrieve values elegantly.
Stars: ✭ 195 (+333.33%)
Mutual labels:  bundler
Cloudflare Workers Webpack Boilerplate
A superbly simple, minimal-config template for building, bundling and deploying Cloudflare Workers with Webpack 🚀
Stars: ✭ 101 (+124.44%)
Mutual labels:  bundler
Bundleup
A friendlier CLI for Bundler’s `update` and `outdated` commands.
Stars: ✭ 111 (+146.67%)
Mutual labels:  bundler
Webpack.js.org
Repository for webpack documentation and more!
Stars: ✭ 2,049 (+4453.33%)
Mutual labels:  bundler
Auxpack
A dashboard for monitoring Webpack build stats.
Stars: ✭ 86 (+91.11%)
Mutual labels:  bundler
Browserify
browser-side require() the node.js way
Stars: ✭ 13,929 (+30853.33%)
Mutual labels:  bundler
Jetpack.js
A ECMAScript bundler and minifier implemented in C++ aimed at excellent performance.
Stars: ✭ 75 (+66.67%)
Mutual labels:  bundler
Webpackbar
Elegant ProgressBar and Profiler for Webpack 3 , 4 and 5
Stars: ✭ 1,887 (+4093.33%)
Mutual labels:  bundler
Pax
The fastest JavaScript bundler in the galaxy.
Stars: ✭ 2,626 (+5735.56%)
Mutual labels:  bundler
Gem updater
Update gems in your Gemfile and fetch their changelogs
Stars: ✭ 206 (+357.78%)
Mutual labels:  bundler
Carton
📦 Watcher, bundler, and test runner for your SwiftWasm apps
Stars: ✭ 171 (+280%)
Mutual labels:  bundler

wparcel

A webpack-based parcel-like web application bundler

How to use

start your web app

create an html file

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>example ts app</title>
  </head>
  <body>
    <div id="root"></div>
    <!-- js, jsx, ts & tsx are supported -->
    <script src="src/main.js"></script>
  </body>
</html>

script srcs in the html file will be used as webpack entry, files that are referenced by <link> or <img> will be copied to assets folder

yarn add wparcel
yarn wparcel index.html

bundle your web app

wparcel build index.html

Known issues

setting proxy in package.json can affect the behaviour of resolving static assets in public (can use advanced proxy setup to walk around this problem)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].