Skip to content

Commit

Permalink
update/commands.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ArunGovil committed Dec 17, 2022
1 parent 696a50a commit 9f026c5
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions content/content.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,64 @@
"technology": "reactjs",
"tags": ["reactjs", "npm"]
},
{
"title": "Create React App using npx",
"code": "npx create-react-app app-name",
"technology": "reactjs",
"tags": ["reactjs", "npx"]
},
{
"title": "Create React App using Yarn",
"code": "yarn create react-app app-name",
"technology": "reactjs",
"tags": ["reactjs", "yarn"]
},
{
"title": "Create React Typescript App using npm",
"code": "npm init react-app app-name --template typescript",
"technology": "reactjs",
"tags": ["reactjs", "npm", "typescript"]
},
{
"title": "Create React Typescript App using npx",
"code": "npx create-react-app app-name --template typescript",
"technology": "reactjs",
"tags": ["reactjs", "npx", "typescript"]
},
{
"title": "Create React Typescript App using Yarn",
"code": "yarn create react-app app-name --template typescript",
"technology": "reactjs",
"tags": ["reactjs", "yarn", "typescript"]
},
{
"title": "Create React Native App using npm",
"code": "npx react-native init appName",
"technology": "reactnative",
"tags": ["reactnative", "npm"]
},
{
"title": "Create React Typescript App using npx",
"code": "npx react-native init appName --template react-native-template-typescript",
"technology": "reactnative",
"tags": ["reactnative", "npx", "npm", "typescript"]
},
{
"title": "Git add remote url",
"code": "git remote add origin repo-url",
"technology": "git",
"tags": ["git", "remote"]
},
{
"title": "Git view remote url",
"code": "git remote -v",
"technology": "git",
"tags": ["git", "remote"]
},
{
"title": "Git update remote url",
"code": "git remote set-url repo-url",
"technology": "git",
"tags": ["git", "remote"]
}
]

1 comment on commit 9f026c5

@vercel
Copy link

@vercel vercel bot commented on 9f026c5 Dec 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

cmdr – ./

cmdr-arungovil.vercel.app
cmdr.vercel.app
cmdr-git-main-arungovil.vercel.app

Please sign in to comment.