Skip to content

andrelmlins/create-react-dependency

Repository files navigation

Create React Dependency

License: MITBuild StatusLanguage grade: JavaScriptNetlify Status


Contributing | Code of Conduct


Project similar to the Create React App for libraries and dependencies.

It creates a ready to publish project which you can upload to npm, yarn and/or your favorite package manager. For more information click here.


Basic Use

npx create-react-dependency new my-dependency
cd my-dependency
npm start

Creating an dependency or library?

Requires version equal to or later than Node 10, choose from the following options to create a dependency or library:

Yarn

yarn create create-react-dependency my-dependency

NPX

npx create-react-dependency my-dependency

NPM

npm init create-react-dependency my-dependency

File Structure

File structure generated from the create-react-dependency project

my-dependency
├── README.md
├── node_modules
├── package.json
├── .gitignore
└── src
    ├── dev
    │   ├── App.js
    │   ├── index.css
    │   ├── index.html
    │   ├── index.js
    │   └── logo.png
    └── lib
        ├── index.cs
        ├── index.js
        └── Lib.js

Projects

Package Version
Create React Dependency npm version
React Dependency Scripts npm version

Contribution guidelines

If you want to contribute to Create React Dependency, be sure to review the contribution guidelines. This project adheres to code of conduct. By participating, you are expected to uphold this code.

License

Create React Dependency is open source software licensed as MIT.