Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zsombro/youngblood
A simple game development framework for web browsers.
https://github.com/zsombro/youngblood
framework game game-development game-engine gamedev javascript
Last synced: 2 months ago
JSON representation
A simple game development framework for web browsers.
- Host: GitHub
- URL: https://github.com/zsombro/youngblood
- Owner: zsombro
- License: mit
- Created: 2017-08-18T19:39:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-27T13:56:16.000Z (6 months ago)
- Last Synced: 2024-10-16T10:30:59.568Z (3 months ago)
- Topics: framework, game, game-development, game-engine, gamedev, javascript
- Language: TypeScript
- Size: 2 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
![Build status](https://travis-ci.com/zsombro/youngblood.svg?branch=master) ![npm](https://img.shields.io/npm/v/youngblood) ![npm bundle size](https://img.shields.io/bundlephobia/min/youngblood)
# youngblood.js`youngblood.js` is a simple game development framework for web browsers, written in TypeScript. The aim of this framework is to be
simple to use and understand. The JavaScript code for setting it up is just a few lines of code:```javascript
new yb.Game()
.startRendering();```
You can also find the package on NPM, which means that you can use it from a proper setup by installing it:
`npm install youngblood`
And then importing the stuff you need in your code:
```javascript
import { Game } from `youngblood`;
```# Getting Started
- [Read the Wiki](https://github.com/zsombro/youngblood/wiki) on how to get started with Youngblood
- Look at some quick and dirty examples in [the 'examples' folder](https://github.com/zsombro/youngblood/tree/master/examples)
- [Check out this repository](https://github.com/zsombro/youngblood-example-project) to see a working example with bundling# Contributing
To start working on the code, you just have to
1. Clone the repo
2. `npm install`
3. `npm build`At this point, you should be able to run the examples included with this codebase! If you would like to contribute, [please read the contribution guide](https://github.com/zsombro/youngblood/blob/master/CONTRIBUTING.md) before doing so!