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.
programming-game
Advanced tools
Programming Game is an mmorpg that you interact with entirely through code.
Visit the homepage and sign in via Github to create your account. You'll need to sign up for a $5/month subscription for each character that you wish to control within the game. The full game is accessible with only one character, but requires coordinated teamwork to progress.
After creating your account, and activating your subscription, you can copy your User ID as well as your API KEY to use with this package.
Control of your character is done entirely through code. Below is the most basic snippet you can use to get started.
import { connect } from "programming-game";
connect({
credentials: {
id: "<supply your user id here>",
key: "<supply your api key here>",
},
/**
* onTick gets called for each subscribed character on every update from the
* server.
*
* It's fully typed through typescript, so feel free to explore its api.
*/
onTick: (heartbeat) => {
if (heartbeat.player) {
return heartbeat.player.move({
x: heartbeat.player.position.x + 1,
y: 0,
});
}
},
});
FAQs
Unknown package
The npm package programming-game receives a total of 1 weekly downloads. As such, programming-game popularity was classified as not popular.
We found that programming-game demonstrated a healthy version release cadence and project activity because the last version was released less than 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.