Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 290 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 290 Bytes

Install Parcel

$ mkdir app

$ cd app && yarn init

$ yarn global add parcel-bundler

Add index.html

# index.html

<html>
<body>
  <script src="./src/index.js"></script>
</body>
</html>

Add entry point

$ mkdir src && cd src && touch index.js

$ parcel index.html