
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
generate-point-in-polygon
Advanced tools
A small module to generate a point on a polygon in O(n) time.
npm install generate-point-in-polygon
Valid inputs: An array of polygon coordinates
const generatePoint = require('generate-point-in-polygon')
const poly = {type: 'Polygon', coordinates: [[[0, 5], [0, 0], [15, 0], [1, 0.5], [0, 5]]]}
const p = generatePoint(poly.coordinates[0])
//returns p = [0.5, 0.25]
Optionally, if you already know the index of a convex vertice, you can pass this in as an argument, this will help speed up the calculation.
const generatePoint = require('generate-point-in-polygon')
generatePoint(someBigPolygon.coordinates[0], 700)
// Switzerland
generate-point-in-polygon x 99,601 ops/sec ±1.59% (91 runs sampled)
turf point-on-feature x 69,499 ops/sec ±0.81% (90 runs sampled)
// Switzerland with identified convex vertice
generate-point-in-polygon x 157,610 ops/sec ±1.59% (91 runs sampled)
turf point-on-feature x 69,499 ops/sec ±0.81% (90 runs sampled)
// Spike case
// generate-point-in-polygon x 1,607,054 ops/sec ±1.00% (82 runs sampled)
// turf point-on-feature x 430,476 ops/sec ±0.68% (89 runs sampled)
FAQs
A module to generate a point in a polygon
The npm package generate-point-in-polygon receives a total of 8 weekly downloads. As such, generate-point-in-polygon popularity was classified as not popular.
We found that generate-point-in-polygon 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.