Parcel is another option that is "batteries included" that you could check out if Vite doesn't fit your needs. - Source: Reddit / 1 day ago
Parcel is a popular zero configuration build tool for the web. Some of its popular features include -. - Source: dev.to / 6 days ago
If your goal is to really dive into this and do things "the right way" the first time, then I'd grab a starter project and/or framework that plays nice with TypeScript as-is. https://parceljs.org/ is a particularly simple builder that works with TS and I like to use it for throwing ideas together because it mostly "just works". But mostly it'll be a lot of research and reading the docs and iterating. - Source: Reddit / 18 days ago
Parcel is a JavaScript bundler for Web applications with zero configuration and is straight-forward to set up. It packages all the application files in a dist folder, so the application can be run. - Source: dev.to / about 1 month ago
I used Parcel (parceljs.org) to create a React app as an alternative to create-react-app. Works locally, as they do, and then when I deploy to Amplify I get "Uncaught SyntaxError: Unexpected token '<' " No amount of searching and tweaking this code has helped. - Source: Reddit / about 1 month ago
Sounds like you're looking for ParcelJS https://parceljs.org/. - Source: Reddit / about 1 month ago
FWIW, I'm using https://pnpm.io and https://parceljs.org to handle collecting and building the static assets for .js (Alpine and HTMX) and .css (Tailwind). I found it cleaner separation of concerns to let the JavaScript tooling manage the JavaScript dependencies, and have been happy with the performance and flexibility of this approach. - Source: Reddit / about 2 months ago
Webpack is just fine, but it can be very complex and tends to have a high learning curve. Tools like parcel and rollup do more or less the same thing as webpack, but they're much easier to learn, tend to be more forgiving, and require a lot less boilerplate setup to get up and running. - Source: Reddit / 3 months ago
It's a React application written in TypeScript using Parcel. - Source: Reddit / 3 months ago
- Data export. Feel free to leave feedback here or on GitHub[3]. Perhaps it could be helpful to you as well. Cheers! 1. https://parceljs.org/. - Source: Hacker News / 3 months ago
A bundler lets you write modular code and bundle it together into small packages to optimize load time. Popular bundlers: webpack, Parcel, esbuild, swc. - Source: Reddit / 3 months ago
Most front-end frameworks nowadays include these features as part of their CLI’s such as Create React App, Angular’s ng-cli, etc. For those that don’t, many will use a combination of some type of bundler like Parcel, Rollup, or Webpack and a browser refresher like livereload. This enables you to write code, save it, and immediately see the results. This in turn leads to fast feedback as you iterate all day in this... - Source: dev.to / 4 months ago
Webpack is the most popular bundler and it followed on the heels of Require.js, Rollup, and similar solutions. But the learning curve for a tool like webpack is steep. Getting started with webpack isn’t easy due to its complex configurations. As a result, in recent years another solution has emerged. This tool is not necessarily a front-runner, but an easier-to-digest alternative on the front-end module bundler... - Source: dev.to / 5 months ago
> I just wanna `script/build` or `yarn dev` and not think about it anymore. Parcel might be a good fit for you: https://parceljs.org/. - Source: Hacker News / 5 months ago
After years of configuring webpack for various projects I have finally decided to migrate all my projects to Parcel[1] manly because I got tired of creating and maintaining hundreds of lines of webpack.config.js files, I wanted something that just works. I am really happy with that decision. Parcel is plenty fast and is pretty much zero config, I can use it to build libraries[2] as well as applications[3] for the... - Source: Hacker News / 5 months ago
Assuming you’re familiar with node and your package manager of choice, I’d recommend looking at parcel. It will let you serve vanilla HTML, CSS, and TS files to a local dev server just like you would normally with vanilla JS. - Source: Reddit / 6 months ago
Look at parcel if you want something easier maybe. https://parceljs.org/. - Source: Reddit / 7 months ago
I would suggest you to look at parcel. It's much easier to set up then webpack and also much quicker and handles shaders out of the box. - Source: Reddit / 7 months ago
Join me as I walk through the current state of JavaScript's module ecosystem, outline how you can prepare for a migration to an ESM bundler, and step through the challenges of trying to configure 3 different popular build tools: rollup.js, Parcel, and esbuild. - Source: Reddit / 7 months ago
However, using the ESM packaging format has one advantage than CJS: tree-shaking. Tree-shaking is the concept of removing unused code from a dependency. Tools: esbuild, parcel, webpack, rollup, terser. - Source: dev.to / 7 months ago
I've recently started using parcel for very simple websites to facilitate bundling without having to write lots of configuration from the get go. - Source: Reddit / 8 months ago
Do you know an article comparing Parcel to other products?
Suggest a link to a post with product alternatives.