Issue
The README for setting up the quickstart-javascript-vue-web application instructs users to run npm start after installing dependencies (npm i). However, the npm start script is not defined in the package.json.
Expected Behavior
The npm start command should initiate a local server for the quickstart application, allowing users to view the application in their web browser.
Actual Behavior
Since the npm start script is not defined in the package.json, attempting to run npm start results in an error, preventing users from starting the local server as intended.
Issue The README for setting up the
quickstart-javascript-vue-web
application instructs users to runnpm start
after installing dependencies (npm i
). However, thenpm start
script is not defined in thepackage.json
.Expected Behavior The
npm start
command should initiate a local server for the quickstart application, allowing users to view the application in their web browser.Actual Behavior Since the
npm start
script is not defined in thepackage.json
, attempting to runnpm start
results in an error, preventing users from starting the local server as intended.