
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
A 1kb entity component system, designed for js13k.
This project uses node and npm. Go check them out if you don't have them locally installed.
$ npm install js13k-ecs
Then with a module bundler like rollup or webpack, use as you would anything else:
// using ES6 modules
import ecs from 'js13k-ecs';
// using CommonJS modules
var ecs = require('js13k-ecs');
The UMD build is also available on unpkg:
<script src="https://unpkg.com/js13k-ecs/dist/ecs.umd.js"></script>
You can find the library on window.ecs
.
See example folder. Live example
register(...Components)
Registers components for use by the library. Components must be classes or constructor functions. No other requirements are imposed on the components.
process(...systems)
Adds systems for use by the library. Systems must be instances of classes or objects. Systems must implement the update
method.
create(id)
Creates the entity with the specified id
. If id
is not specified, serial numbers starting with 1 are generated and encoded in base36. Returns the created entity.
get(id)
Returns the entity with the specified id or undefined
if it is not present.
select(...Components)
Returns a selection of entities that have the specified set of components. The sample is updated real-time and always relevant.
The selector has the length
property, which stores the number of entities in the sample and the iterate(fn)
method, with which you can loop through all entities.
update(delta)
Successively calls update
methods on all systems, passing them the delta
parameter. Returns the object that contains the duration of the execution of the systems.
Entity
add(...components)
Adds the components to the entity.
remove(...Components)
Removes components of the Components
class from the entity. Calls the destructor
method of each component if it is present.
has(Component)
Returns true if the entity has a component of the Component
class and false otherwise.
get(Component)
Returns a component of the Component
class or undefined
if it is not present.
eject()
Removes the entity from all selectors and sets its id
to zero. Calls the destructor
method of each component if it is present.
FAQs
Tiny 1kb entity component system, designed for js13k
The npm package js13k-ecs receives a total of 5 weekly downloads. As such, js13k-ecs popularity was classified as not popular.
We found that js13k-ecs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.