gulp
parcel
Our great sponsors
gulp | parcel | |
---|---|---|
26 | 109 | |
32,548 | 40,883 | |
0.1% | 0.6% | |
0.0 | 9.5 | |
3 months ago | 5 days 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.
gulp
-
v
[Gulp]:
-
console.log to stdout on gulp events
I want to log to stdout (the config environment) when a gulp task is running or has run.
-
Supercharge your CSS with Tailwind
With the pre-processors, you can shrink your CSS and increase reuse through variables. In almost all working cases, it will be an improvement above vanilla CSS. There are also implementations now, via PostCSS, that add vendor prefixes for you. The major drawback is, of course, that you have to compile your CSS beforehand; usually done via part of your tooling such as Grunt or Gulp.
-
How to replace webpack & babel with Vite on a legacy React Typescript project
As far as build tools go I remember how popular Grunt was when it was first released, then it was Gulp, and Babel came along to help you add new us features and get them working on older browsers.
-
Is there any tools that loop through all (html, css, js) files in a folder and minify them?
Gulp
-
After installation of Gulp: “no command 'gulp' found”
After installing gulp.js via npm, I receive a no command 'gulp' found error when running the gulp command from the same directory it was installed into.
-
Separate CSS sheets for each page?
Support this, highly recommend learning SASS https://sass-lang.com/ once you master that checkout Gulp, https://gulpjs.com/ then use them together,
-
Password Protect Static Sites with PageCrypt
One potential concern with PageCrypt is that it only encrypts an HTML file by default. If you want to encrypt your CSS and JavaScript files, you’ll have to inline them in the HTML file. The same applies to images and any other binary assets; you’ll have to inline them as Data URIs. As with any authentication and authorization solution, you’ll want to determine what’s acceptable for your security requirements. Maybe you’re comfortable with the risk of images leaking but have higher security requirements for your JavaScript. In that case, the HTML page can link to the image files but should contain all your JavaScript. You can use many static site build tools to automate inlining assets in HTML. Webpack, Gulp, or Grunt are just a few that might be useful.
-
State of the Web: Bundlers & Build Tools
While Browserify was great at bundling scripts together, it was not quite as good at transforming code. Let's say you wanted to compile your CoffeeScript code to JavaScript. You can do this with plain Browserify. However, it is unwieldy and relatively inflexible. To fix this, a new group of tools for the web where born, which focused on running code transforms. These are usually called task runners, and the most popular ones are Grunt and Gulp. Grunt was the first task manager, first released in January of 2012. It allowed for more flexible code transforms when using bundlers like Browserify or without a bundler. However, there were still problems with Grunt, which were solved by Gulp. Gulp is faster, as it uses Node streams instead of temporary files and runs tasks in parallel, as well as allowing for people to use a script instead of a JSON configuration file. This was still not perfect, though, because it was annoying to use two separate tools. This was fixed by Webpack
-
Daily thread
Gulp - the streaming build system
parcel
-
Setting up a dev environment with React, Vite, and Tailwind
This problem, however, is solved by the concept of bundling. The process involves using a bundler (intuitive, right?) to combine all our app’s files and assets into a single package that works in the browser. This has led to the development of traditional bundlers such as webpack, Parcel, and Rollup.
-
Hi , usually I've split the files like , sometimes make some issues , any better's way to split the files
I’ve written such logic manually before with a MAKEFILE but I recommend just using something like Parcel. Or even if you decide against that I think it wouldn’t hurt to take note of the default file structure if you read through the docs.
-
Webpack returning empty object when doing an import
Parcel 2
-
What is easiest alternative to webpack for frontend assets building?
Maybe Parcel
-
Create a Markdoc plugin in less than 15 lines of code
A couple of weeks ago, we open-sourced Markdoc, the authoring tool powering the Stripe docs. To accompany the launch, we published a blog post showing how to get started using Markdoc with Next.js, using the @markdoc/next.js plugin. In this blog post, I’ll show you how to create your own plugin, using the one I wrote for Parcel, as an example, so that you can use Markdoc with it.
-
how to run a local server (with html/css/jsc/etc files) and launch a website in chrome i can view?
I like using Parcel. https://parceljs.org/
- After 1 month of learning HTML and CSS made this website. What should I work on?
-
Finally, Use Your TypeScript Aliases in Parcel v2
You might keep scrolling and see the section titled "TypeScript ~ Resolution", followed by a promising tsconfig.json with some paths, and think they do actually support it. Well, they don't. This issue opened in 2017 leads me to believe they don't plan to.
-
My first full-stack web app
minify your JS to speed up your page loads - it's marginal but it's relatively trivial to automate with a deployment tool like Rollup, parcel or grand-daddy Webpack.
-
How to write a Firefox add-on using parceljs?
I created a basic firefox sidebar extension and now I want to rewrite it with the help of parceljs
What are some alternatives?
vite - Next generation frontend tooling. It's fast!
esbuild - An extremely fast JavaScript and CSS bundler and minifier
Snowpack - ESM-powered frontend build tool. Instant, lightweight, unbundled development. ✌️ [Moved to: https://github.com/FredKSchott/snowpack]
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
Next.js - The React Framework
tsdx - Zero-config CLI for TypeScript package development
create-react-app - Set up a modern web app by running one command.
FuseBox - A blazing fast js bundler/loader with a comprehensive API :fire: