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.
@rdfjs/namespace
Advanced tools
Named Node builder.
The package exports a factory to create builders for Named Nodes.
The baseIRI
given to the factory will be used together with the parameter given to the builder to create Named Nodes.
The factory must be called with the baseIRI
as a string:
const builder = namespace('http://example.org/base-iri#')
An optional factory can be defined:
const builder = namespace('http://example.org/base-iri#', { factory: customFactory })
By default @rdfjs/data-model
is used.
The builder can be called in three different ways:
builder('property')
)builder`property`
)builder.property
)Calling the builder using the propery requires Proxy support. At the moment IE11 is the only major platform which doesn't support Proxy.
This example shows how to create a builder and create Named Nodes using the three different ways. The properties of the Named Nodes are written to the console.
const namespace = require('@rdfjs/namespace')
const schema = namespace('http://schema.org/')
const hasPart = schema('hasPart')
console.log(hasPart.termType) // NamedNode
console.log(hasPart.value) // http://schema.org/hasPart
const person = schema`Person`
console.log(person.termType) // NamedNode
console.log(person.value) // http://schema.org/Person
const comment = schema.Comment
console.log(comment.termType) // NamedNode
console.log(comment.value) // http://schema.org/Comment
FAQs
Named Node builder
We found that @rdfjs/namespace demonstrated a healthy version release cadence and project activity because the last version was released less than 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.