Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

npm commands

npm install moment # Install a package
npm install eslint --save-dev # tool for validating standard in code
#equivalent to: npm install eslint -D. Into Dependencies in package.json

npm install react --save # stored as dependency
# equivalent to: npm install reac -S. Into devDependencies in package.json

npm install -g cowsay #install as a global package

npm list # list pacakges

npm list -g #list global packages

npm install package-name -o #install optional dependency

npm install react-dom --dry-run #simulate installation without actually adding it

npm install json-server@0.15.0 #Install specific version

npm install json-server@latest #Install latest version

npm install # Install packages in package.json
Comment

npm commands

composer create-project laravel/laravel appname

cd appname  

composer require laravel/jetstream  
  
php artisan jetstream:install inertia                            

php artisan migrate 
  
npm install  

php artisan serve

npm run dev

valet park
Comment

PREVIOUS NEXT
Code Example
Shell :: find powershell psreadline history path 
Shell :: instalar webmin ubuntu 20.04 
Shell :: hyper terminal 
Shell :: rmdir unix 
Shell :: how to save powershell config 
Shell :: command to create jpeg in linux 
Shell :: download gif 
Shell :: precompile bits/stdc++.h 
Shell :: compare files linux 
Shell :: permission denied 
Shell :: linux kill ssh connection 
Shell :: how to update old branch 
Shell :: boot linux from dos 
Shell :: git tag documentation 
Shell :: undo pushed commit 
Shell :: bash multiline string variable 
Shell :: use linux to call via android phone 
Shell :: openjdk-17-jdk 
Shell :: background ubuntu 
Shell :: dir to file txt 
Shell :: flask make host public 
Shell :: arch linux wine 
Shell :: print file size in mb linux 
Shell :: shell search history 
Shell :: angular install ngx-bootstrap 
Shell :: terraform 
Shell :: How to clean up the git repo and reduce its disk size 
Shell :: connect to remote redis over tls 
Shell :: how to start payara server 
Shell :: sudo mn 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =