Skip to content

Commit 21e33ff

Browse files
committed
release: version 1.0.0
1 parent 7552191 commit 21e33ff

File tree

4 files changed

+432
-2
lines changed

4 files changed

+432
-2
lines changed

.gitignore

Lines changed: 179 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
# Created by https://www.gitignore.io/api/node,linux,macos,windows
2+
# Edit at https://www.gitignore.io/?templates=node,linux,macos,windows
3+
4+
### Linux ###
5+
*~
6+
7+
# temporary files which can be created if a process still has a handle open of a deleted file
8+
.fuse_hidden*
9+
10+
# KDE directory preferences
11+
.directory
12+
13+
# Linux trash folder which might appear on any partition or disk
14+
.Trash-*
15+
16+
# .nfs files are created when an open file is removed but is still being accessed
17+
.nfs*
18+
19+
### macOS ###
20+
# General
21+
.DS_Store
22+
.AppleDouble
23+
.LSOverride
24+
25+
# Icon must end with two \r
26+
Icon
27+
28+
# Thumbnails
29+
._*
30+
31+
# Files that might appear in the root of a volume
32+
.DocumentRevisions-V100
33+
.fseventsd
34+
.Spotlight-V100
35+
.TemporaryItems
36+
.Trashes
37+
.VolumeIcon.icns
38+
.com.apple.timemachine.donotpresent
39+
40+
# Directories potentially created on remote AFP share
41+
.AppleDB
42+
.AppleDesktop
43+
Network Trash Folder
44+
Temporary Items
45+
.apdisk
46+
47+
### Node ###
48+
# Logs
49+
logs
50+
*.log
51+
npm-debug.log*
52+
yarn-debug.log*
53+
yarn-error.log*
54+
lerna-debug.log*
55+
56+
# Diagnostic reports (https://nodejs.org/api/report.html)
57+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
58+
59+
# Runtime data
60+
pids
61+
*.pid
62+
*.seed
63+
*.pid.lock
64+
65+
# Directory for instrumented libs generated by jscoverage/JSCover
66+
lib-cov
67+
68+
# Coverage directory used by tools like istanbul
69+
coverage
70+
*.lcov
71+
72+
# nyc test coverage
73+
.nyc_output
74+
75+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
76+
.grunt
77+
78+
# Bower dependency directory (https://bower.io/)
79+
bower_components
80+
81+
# node-waf configuration
82+
.lock-wscript
83+
84+
# Compiled binary addons (https://nodejs.org/api/addons.html)
85+
build/Release
86+
87+
# Dependency directories
88+
node_modules/
89+
jspm_packages/
90+
91+
# TypeScript v1 declaration files
92+
typings/
93+
94+
# TypeScript cache
95+
*.tsbuildinfo
96+
97+
# Optional npm cache directory
98+
.npm
99+
100+
# Optional eslint cache
101+
.eslintcache
102+
103+
# Optional REPL history
104+
.node_repl_history
105+
106+
# Output of 'npm pack'
107+
*.tgz
108+
109+
# Yarn Integrity file
110+
.yarn-integrity
111+
112+
# dotenv environment variables file
113+
.env
114+
.env.test
115+
116+
# parcel-bundler cache (https://parceljs.org/)
117+
.cache
118+
119+
# next.js build output
120+
.next
121+
122+
# nuxt.js build output
123+
.nuxt
124+
125+
# rollup.js default build output
126+
dist/
127+
128+
# Uncomment the public line if your project uses Gatsby
129+
# https://nextjs.org/blog/next-9-1#public-directory-support
130+
# https://create-react-app.dev/docs/using-the-public-folder/#docsNav
131+
# public
132+
133+
# Storybook build outputs
134+
.out
135+
.storybook-out
136+
137+
# vuepress build output
138+
.vuepress/dist
139+
140+
# Serverless directories
141+
.serverless/
142+
143+
# FuseBox cache
144+
.fusebox/
145+
146+
# DynamoDB Local files
147+
.dynamodb/
148+
149+
# Temporary folders
150+
tmp/
151+
temp/
152+
153+
### Windows ###
154+
# Windows thumbnail cache files
155+
Thumbs.db
156+
Thumbs.db:encryptable
157+
ehthumbs.db
158+
ehthumbs_vista.db
159+
160+
# Dump file
161+
*.stackdump
162+
163+
# Folder config file
164+
[Dd]esktop.ini
165+
166+
# Recycle Bin used on file shares
167+
$RECYCLE.BIN/
168+
169+
# Windows Installer files
170+
*.cab
171+
*.msi
172+
*.msix
173+
*.msm
174+
*.msp
175+
176+
# Windows shortcuts
177+
*.lnk
178+
179+
# End of https://www.gitignore.io/api/node,linux,macos,windows

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
1-
# snake-game
2-
Simple terminal Snake game without dependencies
1+
# Snake Game
2+
3+
> Simple terminal Snake game without dependencies
4+
5+
## How to play?
6+
Just download this repository, go to the downloaded folder and type:
7+
```bash
8+
npm run game
9+
```

0 commit comments

Comments
 (0)