Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kovah/taboo
A Taboo-like game for your browser, without a backend, built with Vue
https://github.com/kovah/taboo
browser-game game multiplayer multiplayer-game taboo tabu
Last synced: about 1 month ago
JSON representation
A Taboo-like game for your browser, without a backend, built with Vue
- Host: GitHub
- URL: https://github.com/kovah/taboo
- Owner: Kovah
- License: mit
- Created: 2016-11-09T09:28:45.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T11:19:02.000Z (about 2 months ago)
- Last Synced: 2024-09-17T14:10:23.282Z (about 2 months ago)
- Topics: browser-game, game, multiplayer, multiplayer-game, taboo, tabu
- Language: SCSS
- Homepage: https://taboo.kovah.de
- Size: 2.14 MB
- Stars: 9
- Watchers: 4
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
A Taboo-based game for your browser
## Play now
The game is ready to play on [**taboo.kovah.de**](https://taboo.kovah.de/).
## Installation
### Requirements
This game requires no PHP or other server-side langauge. It needs nothing more than a simple web
server that delivers HTML files and a modern browser.### Installation from Download
Go to the [releases](https://github.com/Kovah/Taboo/releases) page and download the latest "taboo-build.zip"
package. Extract the files into your webserver directory and start your browser. Done.### Installation from Source
Building the game from source requires [Node](https://nodejs.org/en/) installed on your machine.
Install all dependencies using yarn or NPM.
```
yarn install
OR
npm install
```Compiles and hot-reloads for development
```
yarn run serve
OR
npm run serve
```Compiles and minifies for production
```
yarn run build
OR
npm run build
```
## Contributing
### Found a bug or typo? Have a feature request?
Please open a [new issue](https://github.com/Kovah/Taboo/issues/new) and explain what's wrong
or what needs to be improved.### Game Mechanics
Please add an issue first where you explain what you want to change so we can discuss these changes.
Please do not rush forward and change the whole game without any feedback on your ideas to prevent
your pull request to be closed.### Words
All words (or cards) are managed by the [taboo-data](https://www.npmjs.com/package/taboo-data) package.
Please visit the [git repo of the package](https://github.com/Kovah/Taboo-Data) for more information
about contributing.---
KVH Tabu is a project by [Kevin Woblick](https://kovah.de) and [Contributors](https://github.com/Kovah/Tabu/graphs/contributors)