Parcel is a web application bundler.
- Parcel is a web application bundler.
- It offers blazing fast performance utilizing multicore processing, and requires zero configuration.
Install parcel using npm:
npm install -g parcel-bundler
Create a package.json file in your project directory using:
npm init -y
Next, create an index.html and index.js file.
<html>
<body>
<script src="./index.js"></script>
</body>
</html>
console.log("hello world");
Parcel has a development server built in, which will automatically rebuild your app as you change files and supports hot module replacement for fast development. Just point it at your entry file:
parcel index.html
Now open http://localhost:1234/ in your browser. You can also override the default port with the -p <port number> option.
parcel index.html
-p <port number>
Use the development server when you don't have your own server, or your app is entirely client rendered. If you do have your own server, you can run Parcel in watch mode instead. This still automatically rebuilds as files change and supports hot module replacement, but doesn't start a web server.
parcel watch index.html
When you're ready to build for production, the build mode turns off watching and only builds once. See the Production section for more details.
Learn More about Parcel on : https://parceljs.org/getting_started.html
Comments
Post a Comment