Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@patternfly/pfelement
Advanced tools
This is the base element that all other PFElements should extend. It handles setting up a shadow root and applies Shady CSS if it is needed.
To create a new PFElement, use npm run new
from the root of the PFElements repo. After answering a few questions, a new element will be generated for you by generator-pfelement.
Here is an example of a new element and how it extends the base PFElement.
import PFElement from "../pfelement/pfelement.js";
class MyElement extends PFElement {
// The HTML tag name for this element. This will be passed into `customElements.define()`.
static get tag() {
return "my-element";
}
// The path to the element's SCSS file. It is compiled to CSS at build time.
get styleUrl() {
return "my-element.scss";
}
// The path to the element's template. This used at build time.
get templateUrl() {
return "my-element.html";
}
constructor() {
// The call to super is first and contains a reference to the class itself.
// This allows the base class to see any of MyElement's static properties.
super(MyElement);
// any other work to do during the constructor goes here
}
// connectedCallback runs when the element is placed into the DOM. Note that
// in dynamic apps, this _can_ happen more than once, for instance if an
// element is moved from one part of the DOM tree to another.
connectedCallback() {
// super's connectedCallback goes first
super.connectedCallback();
// any other work to do during connectedCallback goes here
}
}
PFElement.create(MyElement);
npm run test
npm run build
From the PFElements root directory, run:
npm start
PFElement (and all PFElements) use Prettier to auto-format JS and JSON. The style rules get applied when you commit a change. If you choose to, you can integrate your editor with Prettier to have the style rules applied on every save.
FAQs
Base class for PatternFly Elements
We found that @patternfly/pfelement demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 16 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
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.