Simple word search game used as a test bed for learning and experimenting with web technologies.
By Ahmed Tawfik
Due to the use of JS modules, CORS browser policies prevent running directly from the filesystem. Running this HTML requires running from a web server.
Install application dependencies via NPM, then build a production build:
npm install
npm run build
Now contents of dist
folder are ready to be deployed to a static web server.
You may use preview mode to verify correct build in dist
folder:
npm run preview
npm run dev
Click on the link printed in the console to open in the default browser. Note that this will also enter the console and browser into watch mode, updating the browser on every change under ./src
.
npm run lint
Run via terminal or via IntelliJ ViTest run configuration:
npm run test
Note that this will also enter the console into watch mode.