1.3.4 • Published 4 years ago

snake-cli-ts v1.3.4

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

snake-cli-ts

CLI Snake Game written in NodeJS and TypeScript

Install

npm i snake-cli-ts -g

Usage

# Just type in console:
snake

Example ss

Use as module

// CommonJS modules
const SnakeGame = require('snake-cli-ts').default;
// ES6 modules with Babel or TypeScript
import SnakeGame from 'snake-cli-ts';
const game = new SnakeGame({
  moveThroughWall: false,
  difficulty: 'easy',
}).on('gameOver', () => {
  console.clear();
  console.log(`Your score: ${game.snake.body.length} points`);
  process.exit();
}).init();