Hacker News new | ask | show | jobs
by danabramov 3611 days ago
This is pretty much what we’re doing with Create React App.

    npm i -g create-react-app
    create-react-app my-app
    cd my-app
    npm start # start devserver
    npm run build # build for production
1 comments

Sure, but how do you go about doing things like managing dependencies, doing hot code loading, running tests, and so on?