Socket
Socket
Sign inDemoInstall

programming-game

Package Overview
Dependencies
21
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    programming-game


Version published
Weekly downloads
4
increased by100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Programming Game

Programming Game is an mmorpg that you interact with entirely through code.

Getting Started

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.

Controlling your Character

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

Last updated on 25 Feb 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc