New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

flappysonic-client

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flappysonic-client

Client part of a flappy bird like game featuring Sonic the Hedgehog

npmnpm
Version
0.0.8
Version published
Maintainers
1
Created
Source

flappysonic-client Tag Build Status Test Coverage Maintainability

Instructions

This is the client part of a Flappy Bird Like game featuring Sonic the Hedgehog.

Requeriments

  • This has createjs as an external dependency, this library has not been bundled.

Installation

You can get the package from npm with npm i flappysonic-client

You can also build it from surce cloning the project, navigate to its root folder and execute npm install for installing it's dependencies, and then npm run-script build for building it.

Usage

To embed this game in an html file createjs has to be loaded from its CDN first, then you can load bundle.js and the canvas where the game will be inserted like:

<html>
    <head>
      <script src="https://code.createjs.com/1.0.0/createjs.min.js" />
      <script src="/scripts/bundle.js"/>
    </head>
    <body>
      <canvas id="gameCanvas" width="320" height="288" />
    </body>
</html>

I recommend checking as an example the official backend.

Testing

For executing the tests just execute npm test on the project's root folder.

Contributing

Any suggestion, bug reports, or any other kind enhacements are welcome. Just open an issue first for creating a PR remember this project has linting checkings so any PR should comply with them before beign merged, this checks will be automatically applied when opening or modifying the PR's.

FAQs

Package last updated on 13 Apr 2020

Did you know?

Socket

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