
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
wetfish-basic
Advanced tools
A lightweight JavaScript framework that lets you control exactly what you need.
You can start developing with basic by using the included basic.js file. This file comes prebuilt with all available functions. If you need to customize which functions are available, see the building section below.
Basic can be used much in the same way as jQuery including selectors and function chaining.
$('.selector').on('click', function()
{
$('.example').addClass('active');
});
Some functions are different than their jQuery counterparts, most notably .size(), which returns an object of the element's height / width instead of separate .width() and .height() functions.
Basic is designed to be customizable, allowing you to specifically choose which functions you need. This is ideal for environments where bandwidth is at a premium, like advertising or satellite broadcasting.
To generate a custom build, you can specify which files you want to load in gulp:
gulp build --files "addClass, removeClass, on"
The output can then be found in ./dist/basic.generated.js
FAQs
A tiny, customizable JavaScript UI framework.
We found that wetfish-basic 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.