Click here to Skip to main content
15,887,135 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I run the terminal, But I do not understand which commands work.
How to write correctly, so I exit the window or better the "help" command so I the allowed commands.

Compiled successfully!

You can now view react-app in the browser.

  Local:            http://localhost:3000
  On Your Network:  http://192.168.0.106:3000

Note that the development build is not optimized.
To create a production build, use npm run build.

webpack compiled successfully


What I have tried:

--help
--exit
Logout
npm run logout
npm help
npx help
npx webpack help
stop
--stop
stop()
--stop()
npm logout
Posted
Updated 9-Jun-23 23:46pm
v2

1 solution

As Javascript is client side based, you will probably need node.js for your serverside. That being said, here are some shortcuts for Javascript terminal usage -

1. Installing -
Regular: npm install
Shortcut: npm i

2. Testing -
Regular: npm test
Shortcut: npm t

3.Getting Help -
Regular: npm --help
Shortcut: npm -h

4. Global Flag -
Regular: --global
Shortcut -g

5. Saving as a Development Dependency -
Regular: --save-dev
Shortcut: -D

Accepting 'npm init' Defaults -
Regular: npm init --yes OR npm init --force
Shortcut: npm init -y OR npm init -f


Note that you no longer need to use '--save' or '-S' to save packages, as that is now the default. To install a package without saving it, use the '--no-save' flag.

You can find many more shortcuts at - npm Tricks for Faster JavaScript Development[^] or a basic development setup tutorial at - JavaScript Tutorial – How to Set Up a Front End Development Project[^]

For further clarification on Javascript vs Node.js, read more at - Node js vs JavaScript[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900