Skip to content

jharrilim/game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

game-of-life

NPM Version NPM Downloads

Conway's Game of Life in a terminal.

Usage

With npx

npx @jharrilim/game-of-life

or

npm i @jharrilim/game-of-life
game-of-life

or

const { ConsoleMap } = require('@jharrilim/game-of-life');

const app = new ConsoleMap().seed(30);
app.on('cycle', cycleCount => {
    app.render();
});

setInterval(() => {
    app.cycle();
}, 1000 / 33);

Releases

No releases published

Packages

No packages published