Skip to content

patrikgerdin/reactjs-documentation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

ReactJS

reactjs.org

Documentation


Create React App

create-react-app.dev

Create React App doesn’t handle backend logic or databases, it just creates a frontend build pipeline, so you can use it with any backend. Under the hood, it uses Babel and webpack.


TypeScript

npx create-react-app my-app --template typescript

JavaScript

npx create-react-app my-app

Develop

To run locally.

npm start

Deploy

To deploy to production, and create an optimized build of your app in the build folder.

npm run build

React Router

reactrouter.com

Documentation (Web)

React Router is a collection of navigational components that compose declaratively with your application. Whether you want to have bookmarkable URLs for your web app or a composable way to navigate in React Native.

npm i react-router-dom @types/react-router-dom

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published