Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
C++ STL (Standard Template Library) Containers and Algorithms for the TypeScript.
TypeScript-STL is an open-source project providing containers and algorithms migrated from C++ STL to TypeScript. You can enjoy the STL's own specific coantainers and algorithms in the JavaScript. If TypeScript, you also can take advantage of type restrictions and generic programming with the TypeScript.
Below components are list of provided objects in the TypeScript-STL. If you want to know more about the TypeScript-STL, then please read the Guide Documents.
Installing TSTL in NodeJS is very easy. Just install with the npm
# Install TSTL from the NPM module
npm install --save tstl
/// <reference types="tstl" />
import std = require("tstl");
let map: std.TreeMap<number, string> = new std.TreeMap<number, string>();
// INSERT ITEMS
map.insert(std.make_pair(1, "First"));
map.insert([4, "Fourth"]); // via Tuple, C++11 Feature
map.insert_or_assign(5, "Fifth"); // C++17 Feature
map.set(9, "Nineth"); // Instead of the operetor[](Key)
// ITERATION
for (let it = map.begin(); !it.equals(map.end()); it = it.next())
console.log(it.first, it.second); // (key => number, value => string)
// LOWER_BOUND
let x = map.lower_bound(3);
console.log("lower bound of 3 is: " + x.first + ", " + x.second);
TypeScript-STL follows the CommonJS
module.
Use browserify or just include the TypeSript-STL's JS file with the <script>
tag.
<script src="http://samchon.github.io/dist/tstl.min.js"></script>
FAQs
TypeScript-STL (Standard Template Library, migrated from C++)
We found that tstl demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.