
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Snake game as an angular component, its only the core of the game... you need to add everything around it (controls, score...) yourself :)
Snake game as an angular component
ngx-snake is actually only the core of the game... YOU need to add everything around it (controls, score...) yourself :)
Check the demo here
npm install ngx-snake
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';
import {AppComponent} from './app.component';
import {NgxSnakeModule} from 'ngx-snake';
@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
NgxSnakeModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
<ngx-snake #game></ngx-snake>
<button (click)="game.actionStart()">Start</button>
<button (click)="game.actionStop()">Stop</button>
<button (click)="game.actionReset()">Reset</button>
<button (click)="game.actionUp()">Up</button>
<button (click)="game.actionLeft()">Left</button>
<button (click)="game.actionRight()">Right</button>
<button (click)="game.actionDown()">Down</button>
Name | Default | Type | Description |
---|---|---|---|
boardHeight | 10 | number | Board height |
boardWidth | 10 | number | Board width |
Name | Description |
---|---|
foodEaten | Called whenever our sweet snake gained some weight ;) |
gameOver | :( collision! snake didn't make it (remember about reset button) |
actionStart
actionStop
actionReset
actionUp
actionRight
actionDown
actionLeft
which can be used like:
<button (click)="onRotateButtonPressed()">Rotate</button>
...
export class SnakeContainingComponent {
@ViewChild(NgxSnakeComponent)
private _snake: NgxSnakeComponent;
public onRotateButtonPressed() {
this._snake.actionRotate();
}
}
OR
<ngx-snake #game></ngx-snake>
<button (click)="game.actionRotate()">Rotate</button>
To change colors and tiles (to black and white for example) define styles with colors like
ngx-snake {
ngx-snake-tile {
background: #ffffff;
&.free {
div {
background: #ffffff;
}
}
}
}
for full example (and all class names) go here
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
This project is licensed under the MIT license. See the LICENSE file for more info.
FAQs
Snake game as an angular component, its only the core of the game... you need to add everything around it (controls, score...) yourself :)
We found that ngx-snake demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.