New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

cmra

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cmra

A commander line for create my own React App.

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

Cmra

A commander line for create my own React app base on create-react-app.

  • Add .eslintrc;
  • Add .prettierrc.js;
  • Add commit lint;
  • Add template select;

Creating an App

You’ll need to have Node 10.16.0 or later version on your local development machine(but it’s not required on the server). You can use nvm (macOS/Linux) or nvm-windows to switch Node versions between different projects.

npx

npx create-react-app my-app

(npx is a package runner tool that comes with npm 5.2+ and higher, see instructions for older npm versions)

npm

npm init react-app my-app

npm init <initializer> is available in npm 6+

Yarn

yarn create react-app my-app

yarn create <starter-kit-package> is available in Yarn 0.25+

It will create a directory called my-app inside the current folder.
Inside that directory, it will generate the initial project structure and install the transitive dependencies:





```sh
cd my-app

Inside the newly created project, you can run some built-in commands:

npm start or yarn start

License

Cmra is open source software licensed as MIT.

FAQs

Package last updated on 06 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts