Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ascii-art-coordinate-grid
Advanced tools
Read a 2D coordinate grid from an ASCII-art-like string.
Read a 2D coordinate grid from an ASCII-art-like string.
When writing tests for modules that take some list of 2d coordinates as input (e.g. a polygon or an embedding of a graph), I often find it hard to make my the test's input data human readable. For example, a polygon ends up looking like this:
const polygon = [
[2, 2],
[0, 0],
[2, -2],
[-3, -3],
[-3, 0],
[-3, 3]
]
As you can see, it's not really obvious how that polygon looks like or what properties it has (e.g. being concave). So, in order to improve readability, I created this module, which allows you to draw out your points on an ASCII-art-like coordinate grid instead:
import readGrid from 'ascii-art-coordinate-grid'
const coordinateGrid = `
. . . . . + . . . . .
. . F . . + . . . . .
. . . . . + . A . . .
. . . . . + . . . . .
+ + E + + B + + + + +
. . . . . + . . . . .
. . . . . + . C . . .
. . D . . + . . . . .
. . . . . + . . . . .
`
const points = readGrid(coordinateGrid) // check the "usage" section for further explanations
const polygon = [points.A, points.B, points.C, points.D, points.E, points.F]
Now, polygon
will contain the same numerical values as before, but the reader might have a much easier time understanding the data.
npm install ascii-art-coordinate-grid
This package is ESM only.
import readGrid from 'ascii-art-coordinate-grid'
const gridString = `
. . # . . . .
. . A . . . .
. . # . . . .
. . # . B . .
C # # # # # #
. . # . . . 🇪🇸
`
const options = {
axisCellCharacter: '#', // defaults to `+`
normalCellCharacter: '.', // defaults to `.`
transformCoordinates: ([x, y]) => [x, y], // defaults to the identity function, is applied to all points
groups: false // if you set this to true, you can use the same character more than once and the points object will contain Sets of coordinates per character instead of one coordinate pair per character
}
const points = readGrid(gridString, options)
// {
// A: [0, 3],
// B: [2, 1],
// C: [-2, 0],
// '🇪🇸': [4, -1]
// }
const polygon = [points.A, points.B, points.C, points['🇪🇸']]
Note that point names can be any non-whitespace human perceived characters, so even emoji 🇫🇷
or other combined characters like 나
.
If you found a bug or want to propose a feature, feel free to visit the issues page.
FAQs
Read a 2D coordinate grid from an ASCII-art-like string.
The npm package ascii-art-coordinate-grid receives a total of 4 weekly downloads. As such, ascii-art-coordinate-grid popularity was classified as not popular.
We found that ascii-art-coordinate-grid 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.