Check out all of my progress and offerings as a developer in one interactive app!
Requires: Python 3.7 or later and NodeJS LTS or later. The built app size minus images is about 500kb. The build tools add about 24MB of node modules.
npm run pip should install any missing python packages. See README)
npm run dev installs nodejs packages and runs both python and node servers concurrently (with hot reloading for FE with a persistent python streaming server backend).
You can access the Node-served page at http://localhost:8000 or the quart server test page at http://localhost:7000 to experiment (add /build at port 7000 to access the webapp build via Python (minus hot reload)).
Set protocol to 'https' in server/server_settings.js for production and generate your ssl keys in the provided folder using the instructions. Set Production=true in python/server.py. Be sure the python server targets the ssl certs properly, too.
The node ws library requires ssl certs to access the python port.
npm run concurrent
npm run production
npm run dev
then npm run startdev
nodemon restarts the node server automatically when changes to included source files are detected.
The nodemon dev server adds basic frontend hot reloading via websocket and clientside code injection (see nodeserver/server.js for method).
2 dev dependencies:
nodemonandws
To run: npm run build to bundle, then npm start to run the node server.
- OR
npm testto run both commands in sequence
You can specify https and add an ssl certificate if you follow the instructions.
2 dependencies:
esbuildandfragelement
To test:
npm run pwa
This installs workbox-cli, generates the service worker, bundles and then starts the application. Run once if you don't need to modify the service-worker further.
1 additional dependency:
workbox-cli
See README.md files in each folder for more explanation on how to work with these types of applications.
