
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
technology-chart
Advanced tools
An technology radar chart implementation without any dependency inspired in Tought Works radar chart. Built-in with TypeScript. Important: Currently this library is in beta version.
This library is distributed by NPM (Node package manager). See the steps of installation and usage below.
npm i technology-chart
The code implementation is simple and can be resumed in these steps:
This library is created using Canvas HTML5 API, so you need an canvas element to initialize the chart.
<html>
<head>
[...]
<!-- You can customize the canvas size with CSS -->
<style>
canvas#tech-radar {
width: 400px;
/** By default, the canvas always be a square, using the maximum size [Math.max(width, height)]*/
}
</style>
</head>
<body>
<!-- Add canvas element -->
<canvas id="tech-radar"></canvas>
</body>
</html>
You should create an configuration object, used by TechnologyChart to create the chart inside canvas. All options provided by configuration object can be found in API Section.
const settings = {
quadrants: ["Lang", "Data", "Frameworks", "Infra"], // Required
rings: ["Adopt", "Trial", "Assess", "Hold"],
data: [
{
quadrant: "Lang",
ring: "Adopt",
value: "TypeScript"
}
]
}
You prepare de canvas and de configuratio object, now we need pass they with argument of TechnologyChart.
const canvas = document.getElementById("tech-radar");
const settings = {/** The config object of step above */};
const chart = new TechnologyChart(canvas, settings);
FAQs
Vanilla library for create technology radar chart using canvas API
The npm package technology-chart receives a total of 0 weekly downloads. As such, technology-chart popularity was classified as not popular.
We found that technology-chart 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.