npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

yeoku

v0.1.5

Published

Entity Component System for javascript

Readme

Yeoku

Yeoku is an Entity-Component-System(ECS) framework in javascript based on Artemis-odb (https://github.com/junkdog/artemis-odb).

API Documentation : http://episanchez.github.io/yeoku/

ps : If you use the old version of yeoku (0.0.x) , you need to migrate your code in following the next documentation. This version is not compatible with the older versions.

Installation

npm install yeoku

Documentation

World

The world is a main piece of the framework, this one contains your entities, your systems and your components.

Upon the world instanciation, all systems and managers initialized.

Build a World from a configuration file

It is advisable to build your world from a json configuration file because it is easier for loading all your systems, optionnal managers, components and archetypes.

Make your Configuration file

For each elements that you want to load, you need to specify the type, the file extension (json or js) and the path of the element's file or directory. For the type attribute, you can select if the element is a module or into a module, a class or directory. If the element is into a module, you have to add an attribute "name" and fill it with the element's name.

{
	"FileName":"WorldConf",
	"Version": 0.3,
	"ComponentsTypes": [
		{
			"type": "Class",
			"fileExtension": "json",
			"path": "./componentExample.json"
		},
		{
			"type": "Module",
			"fileExtension": "json",
			"path": "./mockComponents.json"
		}
	],
	"Systems": [
		{
			"name" : "BasicSystem",
			"type": "Module",
			"fileExtension": "js",
			"path": "../mockData"
		},
		{
			"name" : "ExtendSystem",
			"type": "Module",
			"fileExtension": "js",
			"path" : "../mockData"
		}
	],
	"OptManagers":[],
	"Archetypes": [
		{
			"type": "Class",
			"fileExtension": "json",
			"path": "./archetypeExample.json"
		},
		{
			"type": "Module",
			"fileExtension": "json",
			"path": "./mockArchetypes.json"
		}
	]
}

Load your configuration file and build a world with it

For beginning, you have to create a WorldConfiguration Object and load your json configuration file. When your configuration loading got well, you can build your World with WorldBuilder and your WorldConfiguration Object. After these steps, your World Object is built and you can use it.

var WorldConfiguration = require('yeoku').WorldConfiguration;
var WorldBuilder = require('yeoku').WorldBuilder;

// create a WorldConfiguration Object and load a json file
wc = new WorldConfiguration();
wc.LoadConfFromFile(__dirname + 'worldConf.json');

//Build your new World with WorldBuilder
var testWorld = WorldBuilder.BuildWithWorldConfiguration(wc);
testWorld.getSystem('BasicSystem'); // return ExampleSystem Object

Processing World

In this case, we process the world every 100 miliseconds

var World = require('yeoku').World;

var world1 = new World();

while (42){
	world.process();
	sleep(100);
}

Component

Components are a pure data classes (getter/setter) with optionally some helpers methods

Create a json component

Create a json component is very simple, for each one, you need specify the name, the type (Module), the version and the attributes and for each attribute, you need the name and the value (for example : "name":"value").

A json Class Component :

{
	"name": "ComponentExample",
	"type": "Class",
	"version": 0.2,
	"attributes":{
		"attr1": 20,
		"attr2": 30
	}
}

To simplify the components making, you could create a json components' module, you need specify the name, the type (Module), the version and all the components' object. You could following the next example :

{
	"name": "mockComponents",
	"type": "Module",
	"version":0.3,
	"objects":{
		"WarriorComp":{
			"name": "WarriorComp",
			"attributes":{
				"heresy":10,
				"combo":0
			}
		},
		"MageComp":{
			"name": "MageComp",
			"attributes":{
				"mana":42,
				"flux":15
			}
		}
	}
}

Add or Delete a Component

If you want add or delete a component of your world, you have to use the component manager, this one add or delete the component and add or delete component instances.

var World = require('yeoku').World;
var ComponentBuilder = require('yeoku').ComponentBuilder;
var world = new World();
// build your component
var lc = ComponentBuilder.buildComponentFromFile(__dirname + 'ComponentExample.json');

// Add your component to the manager
world.getComponentManager().create(lc, "name");
world.getComponentManager().getComponentTypeByName("ComponentExample"); // give the component type

// Remove your component to the manager
world.getComponentManager().removeComponentType("ComponentExample");
world.getComponentManager().getComponentTypeByName("ComponentExample"); // undefined

Entity

Entity are containers of related components.

Make your Archetype

The Archetype is an entity's template with all related components and sometimes default value of components' attributes. For example, you could have a player archetype or mob archetype.

You could make a simple archetype, following the next example :

{
	"name": "ArchetypeExample",
	"type": "Class",
	"version": 0.2,
	"components":{
		"WarriorComp":{},
		"MageComp":{
			"mana":42,
			"flux":15
		}
	}
}

or you could make a module archetype, following the next example :

{
	"name": "MockArchetypes",
	"type": "Module",
	"version": 0.3,
	"objects":{
		"Warrior":{
			"name": "Warrior",
			"components":{
				"WarriorComp":{
					"heresy":42,
					"combo":42
				}
			}
		},
		"Mage":{
			"name": "Mage",
			"components":{
				"MageComp":{
					"mana":84,
					"flux":84
				}
			}
		}
	}
}

Build your archetype without archetype manager

If you want to build an archetype without its manager, you can use the archetype builder with a json archetype and world objects. You have to load the components related to the archetype before building your archetype because these ones are checked.

// ... {world}
var jsonArchetype = {
			name: 'ArchetypeExample',
			version: 0.2,
			components:{
				WarriorComp:{
					heresy:10,
					combo:0
				},
				MageComp:{
					mana:42,
					flux:15
				}
			}
		};
var ArchetypeBuilder = require('yeoku').ArchetypeBuilder;

var archetype = ArchetypeBuilder.buildArchetypeFromJson(jsonArchetype, world);

Add or Remove your archetype to the manager

You can add or remove your archetype with the archetype manager.

// ... {world, jsonArchetype}

// add the archetype to the manager
world.getArchetypeManager().addArchetype(jsonArchetype);
world.getArchetypeManager().getArchetypeByName('ArchetypeExample'); // return Archetype
// remove the archetype to the manager
world.getArchetypeManager().removeArchetype('ArchetypeExample');
world.getArchetypeManager().getArchetypeByName('ArchetypeExample'); // return undefined

Create Entity

Create Entity without archetype

Entities managed by EntityManager, this one could be created it, deleted it. Each entity has a copy of ComponentsManager, with this one, you can add/delete a component to the entity.

// ... {world}
world.getEntityManager().createEntity();
Create Entity With Archetype

You can create an entity with the name of the archetype as "Player" or "Mob" and init values of your archetype.

// without init values
testWorld.getEntityManager().createEntityWithArchetypeName('ArchetypeExample');
// with init values
testWorld.getEntityManager().createEntityWithArchetypeName('ArchetypeExample', {WarriorComp: {heresy : 42, combo : 42}, MageComp : {mana : 21, flux : 21}});
Add or Delete Component to the Entity

You can add a component to an entity with the next methods : addComponent and removeComponent of your Entity instances.

// BasicComponent : {rawData : "BasicComponent", intData: 42}
world.getEntityManager().createEntity();

var soldier = world.getEntityManager().getEntityById(0); // Give the entity last created
// Add the component to your entity component's set and your component Manager.
soldier.addComponent("BasicComponent");
// Add Component with init values
soldier.addComponent("BasicComponent", {rawData : "rawData", intData : 42});
soldier.hasComponent("BasicComponent"); // Return true

// Remove the component to your entity component's set and your component Manager.
soldier.removeComponent("BasicComponent");
soldier.hasComponent("BasicComponent"); // Return false

Querying for entities

Systems have built in mechanisms for finding entities which have a specific set of Components (see Aspect).

System

Systems encapsulate game logic, typically operating on a family of entities.

Create a system

  • Extend to a specialized system class (for exemple, intervalSystem or IteratingSystem)
  • Register it on your world
Example

Your own system :

// exampleSystem.js : This system inherits from iteratingSystem

var IteratingSystem = require('yeoku').IteratingSystem;
var util = require('util');

var ExampleSystem = function (){
	IteratingSystem.call(this);
};

util.inherits(ExampleSystem, IteratingSystem);

// When the system added, the world initialized it.
ExampleSystem.prototype.initialize = function(){
	this.buildAspectWithComponentsTypeName(["BasicComponent"], [], []); // build an Aspect with the name of componentType that you need all of them, just one of them or exclude all of them
	IteratingSystem.prototype.initialize.call(this);
};

// params {Integer} the entity id
ExampleSystem.prototype.processEntity(entity){
	var soldier = world.getEntityManager.getEntityById(entity);

	soldier.BasicComponent.setIntData(42);
	soldier.BasicComponent.setRawData("42");
};

module.exports = ExampleSystem;

Register your system and process it :

var ExampleSystem = require('./exampleSystem');
var OldComponent = require('./OldComponent');

var testWorld = new World();

// you need to add your Components before your systems
testWorld.getComponentManager().addComponent("OldComponent", OldComponent);

// Add your system
testWorld.addSystem("ExampleSystem", ExampleSystem); // param {name, class}

// add an Entity with its components
testWorld.getEntityManager().create();
var soldier = world.getEntityManager().getEntityById(0); // Give the entity last created
soldier.addComponent("BasicComponent");

// process World (this one process all your system)
testWorld.process();

soldier.BasicComponent.getIntData(); // result : 42
soldier.BasicComponent.getRawData(); // result : "42"

Skip Processing

Override checkProcessing to return false if you want to skip the system during processing.

Aspect

Aspects match Entities based on a Component pattern, defining the type of entities a system is interested in. Instead of thinking of systems processing entities, they rather process aspects of entities.

License

The MIT License (MIT)

Copyright (c) 2016 Charlie QUILLARD

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.