You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -17,19 +17,19 @@ A robust and efficient data structures library.
17
17
18
18
## Table of Contents
19
19
20
-
-[💡 Why core-dslib?](#-why-core-dslib)
20
+
-[💡 Why dslib-core?](#-why-dslib-core)
21
21
-[📦 Installation](#-installation)
22
22
-[🚀 Getting Started](#-getting-started)
23
23
-[🏗️ Data Structures](#%EF%B8%8F-data-structures)
24
24
-[🔄 Queue](#-queue)
25
25
-[🌟 Contributing](#-contributing)
26
26
-[⚖️ License](#%EF%B8%8F-license)
27
27
28
-
## 💡 Why core-dslib?
28
+
## 💡 Why dslib-core?
29
29
30
-
`core-dslib` is your go-to toolkit for advanced data structures in TypeScript and JavaScript. It bridges the gap left by standard libraries, empowering developers with the tools they need for efficient data management and manipulation.
30
+
`dslib-core` is your go-to toolkit for advanced data structures in TypeScript and JavaScript. It bridges the gap left by standard libraries, empowering developers with the tools they need for efficient data management and manipulation.
31
31
32
-
Whether you're building a complex algorithm or optimizing application performance, `core-dslib` provides the building blocks you need to succeed.
32
+
Whether you're building a complex algorithm or optimizing application performance, `dslib-core` provides the building blocks you need to succeed.
33
33
34
34
> **Note:** Currently only compatible with ESM projects.
35
35
@@ -38,15 +38,15 @@ Whether you're building a complex algorithm or optimizing application performanc
38
38
Install the package via npm:
39
39
40
40
```bash
41
-
npm install core-dslib
41
+
npm install dslib-core
42
42
```
43
43
44
44
## 🚀 Getting Started
45
45
46
46
Import using ESM syntax:
47
47
48
48
```typescript
49
-
import { Queue } from'core-dslib';
49
+
import { Queue } from'dslib-core';
50
50
```
51
51
52
52
Quick start example:
@@ -119,7 +119,7 @@ Implemented using a circular buffer to ensure efficient enqueue and dequeue oper
119
119
#### Example Usage
120
120
121
121
```typescript
122
-
import { Queue } from'core-dslib';
122
+
import { Queue } from'dslib-core';
123
123
124
124
const queue =newQueue<string>();
125
125
@@ -218,20 +218,20 @@ node v20.17.0
218
218
219
219
## 🌟 Contributing
220
220
221
-
Contributions are welcome! If you have ideas, suggestions, or find any issues, please open an [issue](https://github.com/oliviacarlisle/core-dslib/issues) or submit a [pull request](https://github.com/oliviacarlisle/core-dslib/pulls).
221
+
Contributions are welcome! If you have ideas, suggestions, or find any issues, please open an [issue](https://github.com/oliviacarlisle/dslib-core/issues) or submit a [pull request](https://github.com/oliviacarlisle/dslib-core/pulls).
0 commit comments