
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.
@instructure/ui-docs
Advanced tools
A webpack plugin to generate documentation made by Instructure Inc.
npm install @instructure/ui-docs
In your webpack config add the plugin:
const path = require('path')
const pkg = require('./package.json')
new DocsPlugin({
title: `${pkg.name} : ${pkg.description} (${pkg.version})`,
favicon: path.join(__dirname, 'logo.png'),
library: {
packageName: pkg.name,
packageMain: pkg.main,
name: 'MyLibrary',
description: pkg.description,
version: pkg.version,
repository: pkg.repository.url,
author: pkg.author,
codepen: { // codpen button form data
js_external: [
`${pkg.homepage}common.js`,
`${pkg.homepage}${pkg.name}.js`,
`${pkg.homepage}globals.js`
]
}
},
globals: { // for component playground and codepen examples
moment: 'moment'
},
files: {
components: [
path.join(__dirname, 'lib/components/*/index.js') // only top level components
],
docs: [
path.join(__dirname, 'README.md'),
path.join(__dirname, 'CHANGELOG'),
path.join(__dirname, 'docs/*.md')
]
},
template: path.join(__dirname, 'templates/docs/index.tmpl.html')
})
FAQs
A webpack plugin to generate documentation made by Instructure Inc.
We found that @instructure/ui-docs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 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.
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.