Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@javelin/ecs
Advanced tools
@javelin/ecs
A TypeScript Entity-Component System (ECS) for Node and web browsers.
https://3mcd.github.io/javelin
ECS is a pattern commonly used in game development to associate components (state) with stateless entities (game objects). Systems then operate on collections of entities of shared composition.
For example, a system could add a Burn
component to entities with Position
and Health
components when their position intersects with a lava pit.
Run yarn perf
to run performance tests.
Example perf on 2018 MacBook Pro where 350k entities are iterated per tick at 60 FPS:
========================================
perf_storage
========================================
create: 129.333ms
run: 14684.131ms
destroy: 19.823ms
entities | 300000
components | 4
queries | 4
ticks | 1000
iter | 350350000
iter_tick | 350350
avg_tick | 14.982ms
========================================
perf_storage_pooled
========================================
create: 133.237ms
run: 16789.444ms
destroy: 25.286ms
entities | 300000
components | 4
queries | 4
ticks | 1000
iter | 350350000
iter_tick | 350350
avg_tick | 16.789ms
FAQs
Unknown package
The npm package @javelin/ecs receives a total of 126 weekly downloads. As such, @javelin/ecs popularity was classified as not popular.
We found that @javelin/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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.