https://github.com/felipefialho/chess
  
  
    A modern and light chess game developed with HTML, CSS and Javascript. 
    https://github.com/felipefialho/chess
  
chess chess-engine chess-game javascript purecss websocket
        Last synced: 7 months ago 
        JSON representation
    
A modern and light chess game developed with HTML, CSS and Javascript.
- Host: GitHub
- URL: https://github.com/felipefialho/chess
- Owner: felipefialho
- Created: 2014-01-28T14:09:31.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2019-03-28T18:14:42.000Z (over 6 years ago)
- Last Synced: 2025-03-17T18:21:43.766Z (8 months ago)
- Topics: chess, chess-engine, chess-game, javascript, purecss, websocket
- Language: CSS
- Homepage:
- Size: 441 KB
- Stars: 51
- Watchers: 7
- Forks: 24
- Open Issues: 19
- 
            Metadata Files:
            - Readme: README.md
 
Awesome Lists containing this project
README
          # CheSS.js
Chess developed in HTML, CSS and Javascript, created and maintained by [Thiago Genuino](https://twitter.com/tgenuino) and [Felipe Fialho](http://www.felipefialho.com/).
### [Play the game!](http://chessjs.trendi.com.br/chess/)
## Getting Started
#### Install NodeJS
[Click to install NodeJS and npm](http://nodejs.org/)
#### Install MongoDB
[Click to install MongoDB](http://www.mongodb.org/)
#### Install Grunt
[Click to install Grunt](http://gruntjs.com/)
### Install the project
Clone the project and install dependencies
``` 
git clone https://github.com/chessjs/chess
cd chess
npm install
cd public
npm install
``` 
## Assets of project
The 'assets' of project, are in 'public'	
You'll have something like this:
```
public/
└── dev/
	└── assets/
	├── css/
	│   ├── less/
	│   │ 	├── _bootstrap/* 
	│   │ 	├── components/* 
	│   │ 	├── game.less
	│   │ 	├── project.less
	│   │		└── style.less
	│   ├── icons/* 
	│   └── style.css 
	└──  js/ 
		└── _scripts/* 
```
You need only change the `components/*` `*.less` and `_script/*`...
### For watch CSS and JavaScript
``` 
cd public/
grunt w
```	
   
Start hacking away!