Skip to content

arthurbernierjr/create-react-app-minimal

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Create React App Minimal setup

cra-minimal runs create-react-app and then replaces the contents of the src/ folder with my preferred minimal boilerplate. Read more in the About this program section below.

Usage

Install create-react-app:

npm install -g create-react-app

Install cra-minimal:

npm install -g https://github.com/arthurbernierjr/create-react-app-minimal

Use cra-minimal as you would use create-react-app to create a project:

cra-minimal my-new-react-project

Uninstall if you don't like it:

npm uninstall -g cra-minimal

About this program

I 💚 create-react-app, but I don't always want the boilerplate files that it comes with:

src/
├── App.css
├── App.js
├── App.test.js
├── index.css
├── index.js
├── logo.svg
└── registerServiceWorker.js

This program runs create-react-app and replaces the contents of the src folder with my preferred boilerplate:

src/
├── App.css
├── App.js
└── index.js

App.css (empty file)

App.js

import React, { Component } from "react";
import "./App.css";

class App extends Component {
    render() {
        return <div className="App">Hello World</div>;
    }
}

export default App;

index.js

import React from "react";
import ReactDOM from "react-dom";
import App from "./App";

ReactDOM.render(<App />, document.getElementById("root"));

About

create-react-app with my preferred src boilerplate

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%