
Product
Introducing Repository Access Permissions and Custom Roles
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.
Supercharge your Node.JS game development with FlowJS! 🚀 This lightweight and efficient library provides all the essential building blocks for crafting awesome 2D games. It's packed with features to handle rendering, input, sprites, and more!
Sprite class to create unique sprites with their own behaviors and abilities. 💫Just simply run:
npm install flowgame
import flow from 'flowgame';
class MyGame extends flow.Game {
async onCreate() {
//...creation code here...
}
}
await engine.loadAsset('./assets/player.png', 'player');
class Player extends flow.Sprite {
onCreate() {
this.loadTexture("player");
}
onKeyPress(key) {
if (key[0] == "right") this.changeVelocity(1, 0);
if (key[0] == "left") this.changeVelocity(-1, 0);
if (key[0] == "up") this.changeVelocity(0, -1);
if (key[0] == "down") this.changeVelocity(0, 1);
}
}
async onCreate() {
//...other creation code here...
this.addSprite(Player)
}
new flow.Engine({game:MyGame, window:{width:1280, height:720, title:"Game"}});
FAQs
A Node.JS Game Engine
The npm package flowgame receives a total of 7 weekly downloads. As such, flowgame popularity was classified as not popular.
We found that flowgame 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.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.