Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lava.ts/project

Package Overview
Dependencies
Maintainers
0
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lava.ts/project

Library to manage Wanadev's projects, by replacing obsidian-project

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

@lava.ts/project

Name

Lava.ts project

Description

Typescript classes for structure and project-manager

Installation

npm install @lava.ts/project

Usage

import Structure from "@lava.ts/project/lib/Structure";
import { AutoSerializer } from "@lava.ts/serializable/lib/AutoSerializer";
import { addSerializer } from "@lava.ts/serializable/lib/serializers";

export class MyDataStructure extends Structure {
    public static __name__ = "my-data-structure";

    public __name__ = MyDataStructure.__name__;

    get someInfo() {
        return this.$data.someInfo;
    }

    set someInfo(someInfo) {
        this.$data.someInfo = someInfo;
    }
}

addSerializer(new AutoSerializer(MyDataStructure.__name__, MyDataStructure));

export default MyDataStructure;

Support

Submit issue on github

Roadmap

  • Structure
  • ProjectManager
  • History

Contributing

Not open for contribution at the moment. Currently building the first steps of the librairy

Authors and acknowledgment

  • Wanadev

License

BSD-3-Clause

Project status

Currently building the first steps of the library

Keywords

FAQs

Package last updated on 23 Sep 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc