KO
|
EN
gitlite — search
Search
#python
#ai
#rag
#javascript
#llm
#deep-learning
#machine-learning
#rust
#react
#vscode-extension
#nextjs
#typescript
ngx-snake
★ 90
Open GitHub ↗
Snake arcade game implemented in Angular 7
Download README (.md)
Explore Similar Repositories
react-mobx-router
:
Create React App with React Router 4 and MobX + Internationalization
react-bubble-chart
:
A React+D3 animated bubble chart
clang-server
:
A C/C++ AST index server using libclang and flatbuffers written in Go
CogStack-SemEHR
:
Surfacing Semantic Data from Clinical Notes in Electronic Health Records for Tailored Care, Trial Recruitment and Clinical Research
flysystem-aliyun-oss
:
This is a Flysystem adapter for the Aliyun OSS
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ngx-snake
?
Download (.md)
# ngx-Snake > ngx-Snake is simple Snake arcade game implemented in Angular 7 (latest 7.1.4) #### Demo (Updated: 06/01/2019) https://samirhodzic.github.io/ngx-snake/ #### Controls UP, DOWN, LEFT, RIGHT - to control snake ## Setup **Note**: Require Node 4+ together with Npm 3+, also be sure to install [Angular-CLI](https://github.com/angular/angular-cli) (latest 7.1.4) ```bash $ npm install -g @angular/cli@latest ``` Clone this repo in your favourite shell: ```bash $ git clone https://github.com/SamirHodzic/ngx-snake.git ``` Install the npm packages described in the package.json: ```bash $ npm install ``` Transpile typescript into javascript, host the app and monitor the changes: ```bash $ ng serve ``` Visit http://localhost:4200 and play! ## TODO * ~~Save Best Score~~ * Multiple modes * ~~Classic~~ * ~~No Walls~~ * ~~Obstacles~~ * Multiple Fruits * Update UI * ~~Make it responsive~~ * Introduce controls for mobile devices * Write tests * ...