Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
A simple library to manage asset bundles and input for games, especially for wand (https://github.com/devfans/wand) and dragon(https://github.com/devfans/dragon)
const wand = require('wand-js')
class Game {
constructor (options={}) {
this.audios = options.audios
this.images = options.images
this.ab = options.ab
this.init()
}
init() {
this.mixer = this.audios.newMixer()
const canvas = document.getElementById("canvas");
const ctx = canvas.getContext('2d')
this.scene = this.images.newScene({ctx})
this.audios.add('explosion', 'explosion_1', {
url: '/sound/explosion_1.ogg'
})
this.audios.add('bgm', 'bgm', {
url: '/sound/powerup_pick.ogg'
})
this.images.add('tank', 'tank', {
url: '/img/general_sprites.png'
})
this.scene.add('tank', 'tank', {
h: 40,
w: 37
})
this.input = new wand.Panel({ctx})
const button = new wand.Button('A', {
x: 200,
y: 200,
r: 100
})
this.input.register(button)
}
play_audio(name) {
this.mixer.play(name)
}
draw_sprite(name, x, y) {
this.scene.draw(name, x, y)
}
preTick() {
this.input.tick();
}
tick() {
this.input.render();
}
buttonPressed (name) {
return this.input.keyup(name)
}
}
const newGame = () => {
const game = new Game({
audios: wand.Audios,
images: wand.Images,
ab: wand.AB
})
return game
}
FAQs
wand js utils for wand and dragon
The npm package wand-js receives a total of 0 weekly downloads. As such, wand-js popularity was classified as not popular.
We found that wand-js 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.