From 871011a53ef148853bab62cba41a05a10b24c5f8 Mon Sep 17 00:00:00 2001 From: Michael Murtaugh Date: Mon, 19 Apr 2021 22:40:24 +0200 Subject: [PATCH] readme now with markdown headers --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b9831a6..389709a 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,12 @@ ## To build - npm install - npm run build +To build the dist/bundle.js, using the package.json info, you would just do the following two steps: + + npm install + npm run build + +This is typical of how many web tools are packaged today. Even though we use the node package manager, the output is for running in a web browser (not node). But the node ecosystem is used for packages and for tools to "bundle" the code into a form usable in a browser. ## How these files were created (tutorial)