
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
bitser-types
Advanced tools
Type declarations of bitser, a library helps (de)serialization of Lua values with LuaJIT
NOTE: This Declaration is Designed to be used with TypeScriptToLua, Not Common Typescript
| Command | Description |
|---|---|
yarn add -D bitser-types | Install this declaration |
yarn add gvx/bitser | Install bitser |
Upon installation this declaration package can be linked to a tsconfig.json file.
{
"compilerOptions": {
"types": [
"bitser-types"
]
}
}
And used anywhere like this:
import * as bitser from "bitser"
let serializedString = bitser.dumps([...some_values])
Make sure to append ";./node_modules/?/?.lua" to your package.path to assist where Lua looks for modules. (for love2d you will need to do this with love.filesystem.setRequirePath)
package.path += ";./node_modules/?/?.lua"
// ... or in love2d (main.ts, conf.ts won't work):
love.filesystem.setRequirePath(love.filesystem.getRequirePath() + ";node_modules/?/?.lua")
FAQs
Type declarations of bitser
We found that bitser-types 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.