Skip to content

pvarentsov/sudoku

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sudoku

Multiplayer concurrent sudoku. The winner is the player who fills the last cell correctly.

How-to

  1. Build
    # Install libs
    $ npm install
    
    # Build app
    $ npm run build
  2. Lint
    # Run linter
    $ npm run lint
    
    # Run linter and fix errors
    $ npm run lint:fix
  3. Libs
    # Show new versions
    $ npm run lib:check
    
    # Upgrade libs
    $ npm run lib:upgrade
  4. Run
    # Start app
    $ npm run start
    
    # Expose local.env and start app
    $ npm run start:local
  5. Browse localhost:[app port] (Chrome is preferred)
Screencast

Ngrok

Ngrok is an easy way to expose local sudoku server to the public internet:

  1. Start app
    $ npm run start
  2. Expose server
    $ ./ngrok http [app port]
  3. Browse generated public url
Screencast