Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
nicholas-wp
Advanced tools
Nicholas is a small, extend-able client-side caching, and routing layer for websites. It was originally built to make using the Nearly Headless approach easier to accomplish, but it is also most-likely compatible with fully headless sites.
This is the WordPress implementation of Nicholas, and it provides components to make building interfaces to customize compatibility mode URLs, as well as a few WordPress-specific middlewares for the Nicholas router.
To use this implementation, you'll also need to set up the Nicholas Underpin Module, which creates the back-end support necessary to make the components and middleware provided in this package work.
npm install nicholas-wp
Nicholas comes with a React component that allows you to build a compatibility mode interface inside the WordPress editor. A basic setup to render this would look like this:
import { render } from '@wordpress/element'
import { Admin } from 'nicholas-wp/admin'
import fetch from 'nicholas-wp'
// Render the app
window.onload = () => render( <Admin/>, document.getElementById( 'app' ) )
// Export fetch, so we can add midleware via PHP
export { fetch }
However, you can pass children to Admin
, as well, if you want to add more components within the app:
import { render } from '@wordpress/element'
import { Admin } from 'nicholas-wp/admin'
import fetch from 'nicholas-wp'
function CustomComponent( props ) {
return <h1>This will get appended to the bottom of the app. The props contain items needed to update the app's
state.</h1>
}
// Render the app
window.onload = () => render( <Admin>
<CustomComponent/>
</Admin>, document.getElementById( 'app' ) )
// Export fetch, so we can add midleware via PHP
export { fetch }
It's possible to add a compatibility mode toggle to your posts using the CompatibilityModeToggle
component, like so:
import { registerPlugin } from '@wordpress/plugins';
import CompatibilityModeToggle from './nicholas-wp/editor/CompatibilityModeToggle'
registerPlugin( 'theme', { render: () => <CompatibilityModeToggle/> } );
Nicholas Router supports adding middleware to routes. This package includes a couple handy middlewares to help with routing in a WordPress environment, including:
To use these, you just need to add them to your router, like so:
import {addRouteActions, validateMiddleware } from 'nicholas-router'
import {updateAdminBar, validateAdminPage, validateCompatibilityMode, primeCache} from 'nicholas-wp/middlewares'
addRouteActions(
// First, validate the URL
validateMiddleware,
// Validate this page is not an admin page
validateAdminPage,
// Validate compatibility mode.
validateCompatibilityMode,
// Prime the cache to be used afterward.
primeCache,
// Maybe update the admin bar
updateAdminBar
)
FAQs
WordPress support for Nicholas nearly headless theme framework
The npm package nicholas-wp receives a total of 2 weekly downloads. As such, nicholas-wp popularity was classified as not popular.
We found that nicholas-wp 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.