Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Implementation of STL (Standard Template Library) for the AssemblyScript.
ASTL is an open-source project providing features of the STL, migrated from the C++ to the AssemblyScript. You can enjoy those STL's own specific containers, algorithms and functors in the AssemblyScript.
Below components are list of the provided objects in the ASTL.
Vector
Deque
List
ForwardList
VectorBoolean
TreeSet
TreeMultiSet
TreeMap
TreeMultiMap
HashSet
HashMultiSet
HashMap
HashMultiMap
Stack
Queue
PriorityQueue
FlatSet
FlatMultiSet
FlatMap
FlatMultiMap
Not implemented yet.
Not implemented yet.
Installing the ASTL in the NodeJS environment is very easy. Just install with the npm
.
npm install --save astl
import std from "astl";
function main(): void
{
const map: std.TreeMap<i32, string> = new std.TreeMap();
map.emplace(1, "First");
map.emplace(4, "Fourth");
map.emplace(5, "Fifth");
map.set(9, "Nineth");
for (let it = map.begin(); it != map.end(); it = it.next())
trace(it.first.toString() + ", " + it.second);
const it: std.TreeMap.Iterator<i32, string> = map.lower_bound(3);
trace("lower_bound() of 3 is: " + it.first.toString());
}
main();
FAQs
AssemblyScript-STL (Standard Template Library, migrated from the C++)
We found that astl demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.