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.
WIP NOTICE: this project is in active development
Fidget is a custom-elements library that helps you define custom dom elements with some added extras.
var CustomElement = fidget.register({
name: "custom-element",
attributes: {},
fragments: {},
events: {},
components: {},
createdCallback: function( ){}
})
var customElement = new CustomElement()
document.body.appendChild(customElement)
Define simple attributes and access them on the element instance with a property.
Fragments are simple templates you can render with custom data.
A fragment always returns a HTMLDocumentFragment
object you can append into the DOM.
Templates are using lodash.template to compile render functions by default.
Define custom events and control all the default values of the event object. Later you can simply dispatch them by name.
Custom components are simple shortcuts to the inner elements of the host element.
By default they are querySelector
calls, but you can overwrite their behaviour any time.
Fidget comes with a powerful event delegation solution. You can delegate single or multiple elements, define multiple delegate functions that acts much like middleware, and stop delegation and time.
If you need a polyfill for custom elements, I recommend document-register-element. That's all you need to get going with custom elements and fidget and be crossbrowser.
MIT; run with it!
FAQs
Web Compnents/Custom element factory
We found that fidget 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.
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.