Conclusion

Wrapping up.

After you’ve done all the set up, you should have a project directory which looks something like:

1
2
3
4
5
6
7
8
9
./react-dojo/
├── node_modules
├── source
│   ├── index.html.ejs
│   └── index.jsx
├── .babelrc
├── .gitignore
├── package.json
└── webpack.config.js

If you run the Dev Server and visit http://localhost:8080 you should see a “Hello, World!”.

Edit on GitHub