parcel
gulp
parcel | gulp | |
---|---|---|
183 | 49 | |
43,626 | 33,053 | |
0.2% | 0.0% | |
9.4 | 5.6 | |
6 days ago | 8 months ago | |
JavaScript | JavaScript | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
parcel
-
Bun 1.2 Is Released
From its documentation [1] it looks a lot like a parceljs replacement [2], i.e. a zero config bundler which processes and bundles the dependencies in .html pages. So great for simple websites, not for replacing an entire Vite stack.
[1] https://bun.sh/docs/bundler/fullstack
[2] https://parceljs.org
-
What is Evan You doing by creating VoidZero, and what are the issues with JS toolchains?
Packagers are the ones we most frequently come into contact with, such as Webpack Vite and Parcel. The latter may not be commonly used, but it is also a well-established tool.
-
Node.js: A brief history of cjs, bundlers, and esm
npm packages dramatically sped up the productivity of developers by being able to leverage other developers' work. However, it had a major disadvantage: cjs was not compatible with web browsers. To solve this problem, the concept of bundlers was born. browserify was the first bundler which essentially worked by traversing an entry point and "bundling" all the require()-ed code into a single .js file compatible with web browsers. As time went on, other bundlers with additional features and differentiators were introduced. Most notably webpack, parcel, rollup, esbuild and vite (in chronological order).
- Parcel is a zero configuration build tool for the web
-
TypeScript 5.7 RC Released, New npm Alternative, The Future of JavaScript Frameworks and more
The AI Framework Debate
-
Bluetooth Low Energy based RGB LED Strip color control from a web browser and STM32
You will need a web bundler. You can use parcel.js
-
Connecting to BLE device and Reading Characteristics using JavaScript
To run this script, we need a web bundler like parcel js.
-
Tools and libraries widely used in micro frontend architectures!
Official Website
-
From Parcel to Vite: A short story of a 100K LOC migration
Someone even opened a discussion to ask if Parcel is dead. The official answer is no, Parcel is still alive, but it's in a we-are-working-on-a-large-refactor-and-no-time-for-minor-releases state. To us, it's like a "duck death": The latest version we can use is from more than a year ago, and we don't know when the next version will be released. It looks like it's dead, it acts like it's dead, so it's dead to us. Trust me, we tried.
-
Webpack Performance Tuning: Minimizing Build Times for Large Projects
While bundlers like Vite and Parcel present challenges due to our specific needs, two newer alternatives for Webpack show promise. Turbopack, the successor to Webpack created by Tobias Koppers, offers substantial performance enhancements. But, its current beta status and exclusivity for Next.js, limits its immediate usability for us.
gulp
-
Task Runners for Projects
Gulp
-
Top 10 JavaScript Libraries </>
Description: A toolkit for automating repetitive tasks in the development workflow, such as minification, compilation, and live reloading. It uses a "streaming" approach for fast builds. Use Cases: Automating tasks in web development, like compiling SCSS, minifying JavaScript, and optimizing images. Website: Gulp
-
100+ Must-Have Web Development Resources
Gulp: A streaming build system.
-
How to Use Less CSS With Build Tools Gulp or Webpack
Gulp is a powerful task runner that automates various development workflows, streamlining the management of repetitive tasks.
-
JavaScript frameworks: comparing the latest tools and libraries
Gulp is a task runner that automates repetitive tasks in the development workflow.
-
How 'npm create vue@latest' works
But what is a symbolic link exactly? It comes from programming and I often liken symbolic links to basic redirects but with greater stability. However, not every package needs a place in .bin. Packages like nodemon, webpack, gulp, eslint and create-vue are found in .bin because they need to be executed. On the other hand, packages like animate.css, swiper and express operate at the application layer, so you won't find them in .bin after installation. How does npm determine whether a package is executable or not? It's simple: by using the bin property in your package.json to specify the executable path. If your package is executable, you can set it accordingly. Let's take a look at prettier's package.json file
- FLaNK-AIM Weekly 13 May 2024
-
How, and why, you should add JavaScript linting to your project. With ESLint and Gulp
A little gulp and npm knowledge is beneficial, but not required
-
How to improve page load speed and response times: A comprehensive guide
Many web pages use CSS and JavaScript files to handle various features and styles. Each file, however, requires a separate HTTP request, which can slow down page loading. Concatenation comes into play here. It involves combining multiple CSS or JavaScript files into a single file. As a result, pages load faster, reducing the time spent requesting individual files. Gulp, Grunt, and Webpack are some of the tools that can assist you in speeding up the concatenation process. They enable seamless merging of many files during development, ensuring deployment readiness.
-
Build a Vite 5 backend integration with Flask
Once you build a simple Vite backend integration, try not to complicate Vite's configuration unless you absolutely must. Vite has become one of the most popular bundlers in the frontend space, but it wasn't the first and it certainly won't be the last. In my 7 years of building for the web, I've used Grunt, Gulp, Webpack, esbuild, and Parcel. Snowpack and Rome came-and-went before I ever had a chance to try them. Bun is vying for the spot of The New Hotness in bundling, Rome has been forked into Biome, and Vercel is building a Rust-based Webpack alternative.
What are some alternatives?
vite - Next generation frontend tooling. It's fast!
webpack - A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.
Rollup - Next-generation ES module bundler
esbuild - An extremely fast bundler for the web
grunt - Grunt: The JavaScript Task Runner
Broccoli - Browser compilation library – an asset pipeline for applications that run in the browser
FuseBox - A blazing fast js bundler/loader with a comprehensive API :fire:
pkg - Package your Node.js project into an executable