Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 456 Bytes

js_frameworks.md

File metadata and controls

31 lines (22 loc) · 456 Bytes

JavaScript Frameworks

React

  • Create a new react app:
  npx create-react-app projectname
  • Run a react app:
  npm run
  • Import react in a react file in VS Code: imr
  • Create basic code structure in a react file in VS Code: rfce
  • Create basic code structure in a typescript file in VS Code: rafce

Next

  • Create a new next app:
  npx create-next-app projectname
  • Run a next app:
  npm run dev