A basic viperHTML + hyperHTML setup
npm install create-viperhtml-app
A basic viperHTML + hyperHTML setup based on Webpack and with native subclassing capabilities, including Custom Elements.
npm install to bring all dependencies in, then npm run build whenever you change assets or simply npm run watch to automatically update all new files.
To test the example page, just run the usual npm start.
* cdn contains all optimized on-demand static assets. It's automatically managed, nothing to do there.
* public is the actual public site content. It contains few static assets but also JS bundles. You can add CSS bundles too (coming soon).
* viper is where the actual app code is defined, it has at least these subfolders: client, for the browser related client-side code, server, for the HTTP based back-end service, and view, for the external files used either on the client, on the server, or in both, to generate the whole page, or partial content.
You can surf each folder inside ./viper one to know more about each role.
#### F.A.Q.
* can I use _express_ or others? Sure you can, this is just a basic setup.
how to cleanup _tinyCDN_ cached content? You can simply rm -rf cdn/ or npm run purge before re-deploying. _tinyCDN_ gives for granted if a file name is the same, the content must be too. It really works in that sense.
* how come the example page shows with _hiccups_? It's a demonstration that _viperHTML_ can also render partial asynchronous chunks, no matter in which order these are resolved. You can remove the array of promises from the body info of the server model and re-test anything you'd like to