https://github.com/raclettes/weasel
A front-end agnostic back end for multiplayer games.
https://github.com/raclettes/weasel
backend
Last synced: 4 months ago
JSON representation
A front-end agnostic back end for multiplayer games.
- Host: GitHub
- URL: https://github.com/raclettes/weasel
- Owner: raclettes
- License: gpl-3.0
- Created: 2021-03-23T15:49:37.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-25T21:23:18.000Z (about 4 years ago)
- Last Synced: 2024-11-17T10:45:50.795Z (6 months ago)
- Topics: backend
- Language: TypeScript
- Homepage:
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Weasel
A simple universal backend for making multiplayer games.This is still in development, and proper documentation is not yet created. Feel
free to contribute!## Setup
To install the required dependencies, and have `yarn` installed, run:
```sh
yarn
```If you use solely NPM, run:
```sh
npm i
```## Executing
To run the backend, do the following if you use yarn:
```sh
yarn start
```Or the following for npm:
```sh
npm run start
```This builds the typescript code to `dist/` and runs it. There are several scripts in `package.json` to build and run linters.