New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

bitser-types

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitser-types

Type declarations of bitser

latest
npmnpm
Version
0.1.7
Version published
Maintainers
1
Created
Source

bitser-types

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

CommandDescription
yarn add -D bitser-typesInstall this declaration
yarn add gvx/bitserInstall 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

Package last updated on 15 Oct 2021

Did you know?

Socket

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.

Install

Related posts