
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
SCIM 2.0 (System for Cross-domain Identity Management) is a set of standards (RFC7643 and RFC7644) designed to simplify resource provisioning and identity management in cloud-based applications and services. SCIMMY aims to make it easier to rapidly implement code that sends and receives data conforming to these standards. It does this by providing a set of tools that can be used to parse incoming, and format outgoing data according to these standards.
Want to use SCIMMY to quickly implement the SCIM protocol HTTP endpoints in express?
Check out the SCIMMY Routers middleware package!
Through NPM:
$ npm install scimmy
In your code:
import SCIMMY from "scimmy";
// Basic usage with provided resource type implementations
SCIMMY.Resources.declare(SCIMMY.Resources.User)
.ingress((resource, data) => {/* Your handler for creating or modifying user resources */})
.egress((resource) => {/* Your handler for retrieving user resources */})
.degress((resource) => {/* Your handler for deleting user resources */});
// Advanced usage with custom resource type implementations
SCIMMY.Resources.declare(class MyResourceType extends SCIMMY.Types.Resource {
read() {/* Your handler for retrieving resources */}
write(data) {/* Your handler for creating or modifying resources */}
dispose() {/* Your handler for deleting resources */}
/* ...the rest of your resource type implementation */
});
Why use SCIMMY instead of some other SCIM-related package?
Will this work with cloud service X/Y/Z?
What about the actual SCIM protocol HTTP endpoints?
SCIMMY exports a singleton class which provides the following interfaces:
SCIMMY.Config
SCIMMY.Types
SCIMMY.Messages
SCIMMY.Schemas
SCIMMY.Resources
For more details on how to use SCIMMY, visit the documentation.
FAQs
SCIMMY - SCIM m(ade eas)y
The npm package scimmy receives a total of 20,426 weekly downloads. As such, scimmy popularity was classified as popular.
We found that scimmy 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.