Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/svierk/lwc-oss-snake-game
🐍 Classic Snake game built with Lightning Web Components Open Source including Vercel deployment
https://github.com/svierk/lwc-oss-snake-game
lwc-oss lwr salesforce snake-game vercel-deployment
Last synced: 26 days ago
JSON representation
🐍 Classic Snake game built with Lightning Web Components Open Source including Vercel deployment
- Host: GitHub
- URL: https://github.com/svierk/lwc-oss-snake-game
- Owner: svierk
- License: mit
- Created: 2023-05-03T20:28:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-05T20:30:04.000Z (3 months ago)
- Last Synced: 2024-08-05T23:40:19.765Z (3 months ago)
- Topics: lwc-oss, lwr, salesforce, snake-game, vercel-deployment
- Language: CSS
- Homepage: https://lwc-oss-snake-game.vercel.app
- Size: 8.49 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🐍 LWC OSS Snake Game
![GitHub CI](https://github.com/svierk/lwc-oss-snake-game/actions/workflows/ci.yml/badge.svg)
The project was born out of pure interest in using Lightning Web Components outside of the Salesforce platform.
I was inspired to the Snake idea by the following blog article and reused some of the game code:[How to Build the Snake Game Using Lightning Web Components](https://developer.salesforce.com/blogs/2020/09/how-to-build-the-snake-game-using-lightning-web-components)
If you are also interested in LWC OSS you can find more info here: https://lwc.dev/
## Preview
## Project Setup
The directory structure looks like this:
```
src/
├── assets/ // static assets
│ └── fonts/
│ └── icons/
│ └── images/
│ └── styles/
| └── favicon.ico
└── layouts/ // lwc layouts
│ └── main.html
└── modules/ // lwc modules
└── snake/
└── app/
├── app.css
├── app.html
└── app.js
└── game/
├── game.css
├── game.html
└── game.js
lwr.config.json // lwr configuration
package.json // npm packaging configuration
```## Configuration
The LWR server is configured in `lwr.config.json`, at the root of the project. It has two LWC module and one server-side route.
```json
{
"lwc": { "modules": [{ "dir": "$rootDir/src/modules" }, { "npm": "lightning-base-components" }] },
"routes": [
{
"id": "snake",
"path": "/",
"rootComponent": "snake/app",
"layoutTemplate": "$layoutsDir/main.html",
"bootstrap": {
"syntheticShadow": true
}
}
],
"assets": [
{
"alias": "assetsDir",
"dir": "$rootDir/src/assets",
"urlPath": "/assets"
},
{
"dir": "$rootDir/src/assets/fonts",
"urlPath": "/fonts"
},
{
"alias": "favicon",
"file": "$rootDir/src/assets/favicon.ico",
"urlPath": "/favicon.ico"
}
]
}
```## Running Linter and Prettier
Run _Prettier_ to check all files for formatting issues:
```
yarn run prettier
```Run _ESLint_ to check for linting issues:
```
yarn run lint
```## Running the Project in Dev Mode
Install all required dependencies:
```
yarn install
```Start the local development server:
```
yarn dev
```Open the site at [http://localhost:3000](http://localhost:3000)
## Statically Generate and Preview the Site
Build the project:
```
yarn build
```Preview the generated site:
```
yarn start
```Open the site at [http://localhost:3000](http://localhost:3000)