Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@streetcredlabs/categories
Advanced tools
This is a JavaScript utility module that represents a category taxonomy (nested list)
for places people care about in the world, aka Points of Interest (POIs).
Categories represent the place type, for example a Starbucks is a coffee_shop
.
yarn add @streetcredlabs/categories
or
npm i --save @streetcredlabs/categories
// using CommonJS
const { findById } = require('@streetcredlabs/categories');
// using ES6
import { findById } from '@streetcredlabs/categories';
This function allows the client to look up the category object by its id. Categories may be nested.
import { findById } from '@streetcredlabs/categories';
const category = findById(1);
{
"id": 1,
"name": "Arts & Entertainment",
"icon": "theatre",
"categories": [ <category> ]
}
Returns the entire categories array.
import { dump } from '@streetcredlabs/categories';
const categories = dump();
[
{
"id": 1,
"name": "Arts & Entertainment",
"icon": "theatre",
"categories": [...]
},
...
]
Pull requests are warmly welcomed.
git clone git@github.com:streetcredlabs/categories.git && cd categories
yarn
or
npm i
yarn test-watch
or
npm run test-watch
yarn test
or
npm run test
yarn start
or
npm run start
yarn build
or
npm run build
Reference:
Rollup v. Webpack v. Parcel by Adam Gerard
FAQs
JS utility wrapper for places category taxonomy
The npm package @streetcredlabs/categories receives a total of 3 weekly downloads. As such, @streetcredlabs/categories popularity was classified as not popular.
We found that @streetcredlabs/categories demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.