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

dsacjs

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

dsacjs

A high-performance JavaScript and TypeScript library offering a comprehensive set of efficient data structures. Simplify your algorithm implementation and data manipulation with optimized, easy-to-use tools.

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
136
decreased by-20.93%
Maintainers
0
Weekly downloads
 
Created
Source

IN DEVELOPMENT

DsacJs

Data Structures - Algorithm - Toolkit Collection

A high-performance JavaScript and TypeScript library offering a comprehensive set of efficient data structures. Simplify your algorithm implementation and data manipulation with optimized, easy-to-use tools.

npm License: MIT npm downloads

Documentation

CDN

<script type="module">
  import { LinkedList } from "https://cdn.jsdelivr.net/npm/dsacjs@0.0.1/+esm";

  const linkedList = new LinkedList();

  linkedList.add(1);
  linkedList.add(2);
  linkedList.add(3);

  console.log(linkedList.toArray());
</script>

Installation

npm install dsacjs
yarn add dsacjs
pnpm add dsacjs
bun add dsacjs

Usage

import { LinkedList } from "dsacjs";

const list = new LinkedList();
list.add(1);
list.add(2);
list.add(3);

console.log(list.toArray()); // [1, 2, 3]

Features

  • Data Structures: A comprehensive set of data structures including linked lists, stacks, queues, trees, graphs, and more.

  • Algorithms: A collection of algorithms for sorting, searching, and other common tasks.

  • Toolkit: A set of utility functions for working with data structures and algorithms.

Why DsacJs?

  • Performance: High-performance implementations with optimized algorithms and data structures.

  • Ease of Use: Simplify your algorithm implementation and data manipulation with easy-to-use tools.

  • Comprehensive: A comprehensive set of data structures, algorithms, and utility functions for all your needs.

Contributing

Contributions are welcome! For feature requests and bug reports, please submit an issue. For code contributions, please follow the contribution guidelines.

License

DsacJs is MIT licensed.

Contributing

Thank you for considering contributing to DsacJs! We welcome all contributions, including bug reports, feature requests, and code contributions.

Code of Conduct

This project and everyone participating in it is governed by the DsacJs Code of Conduct. By participating, you are expected to uphold this code.

Authors

Keywords

FAQs

Package last updated on 15 Nov 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