Skip to content

Commit e8d1713

Browse files
v0.1.0 Use tic-tac-toe as base for a library
1 parent e939355 commit e8d1713

15 files changed

+2051
-1
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# npm modules
2+
node_modules/
3+
4+
# compiled js
5+
dist/
6+
7+
# MacOS file manager layout
8+
.DS_Store

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 CodeGame
3+
Copyright (c) 2022 CodeGame Contributors (https://github.com/orgs/code-game-project/people)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,31 @@
11
# javascript-server
2+
3+
![CodeGame Protocol Version](https://img.shields.io/badge/Protocol-v0.6-orange)
4+
![CodeGame GameServer Version](https://img.shields.io/badge/GameServer-v0.1-yellow)
5+
![Node.js Version](https://img.shields.io/badge/node-%3E%3D%20v8.0-brightgreen)
6+
27
This is the JavaScript (and TypeScript) server library for CodeGame.
8+
9+
## License
10+
11+
MIT License
12+
13+
Copyright (c) 2022 CodeGame Contributors (https://github.com/orgs/code-game-project/people)
14+
15+
Permission is hereby granted, free of charge, to any person obtaining a copy
16+
of this software and associated documentation files (the "Software"), to deal
17+
in the Software without restriction, including without limitation the rights
18+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19+
copies of the Software, and to permit persons to whom the Software is
20+
furnished to do so, subject to the following conditions:
21+
22+
The above copyright notice and this permission notice shall be included in all
23+
copies or substantial portions of the Software.
24+
25+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31+
SOFTWARE.

0 commit comments

Comments
 (0)