A tiny CLI that creates a barebones web app without a buildstep. Most modern browsers now ship with support for ES-Modules and ES6 meaning that you may not need a build step for your projects.
npx create-plain-app my-app
cd my-app
npm start
I plan to add an optional feature to bundle code prior to publication. This wouldn't involve any transpiling and is meant purely as a performance optimization to reduce the number of network requests.
A special thank you goes to Luke Jackson for authoring servor, the static file server used by this project.
Create Plain App is open source software licensed as MIT.