Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brunosalerno/node-sgf-parser
A node.js sgf files parser
https://github.com/brunosalerno/node-sgf-parser
Last synced: 1 day ago
JSON representation
A node.js sgf files parser
- Host: GitHub
- URL: https://github.com/brunosalerno/node-sgf-parser
- Owner: BrunoSalerno
- License: other
- Created: 2014-10-03T22:10:07.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-03T22:38:12.000Z (about 10 years ago)
- Last Synced: 2024-10-31T17:12:45.989Z (19 days ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
node-sgf-parser
===============A node.js sgf files parser.
Based on [wgo.js](https://github.com/waltheri/wgo.js).Installation
============
```
npm install node-sgf-parser
```Usage
=====
```
var sgf_parser= require('node-sgf-parser');
var sgf = sgf_parser.parseFromSgf(your_sgf_file_string);
//do stuff
```