
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.
skrull-json
Advanced tools
Brings shapeshifting abilities to JSON. Converts json schemas using configuration mapping
Brings shapeshifting abilities to your JSON data.

Skrull is a lightweight, efficient JavaScript utility for transforming JSON structures based on a given mapping. It provides a simple way to reshape JSON data
When data schema in your system (S0) is different than multiple extenral systems S1, S2, ...Sn and you need to repeatedly transform data when interacting with these external systems. Example - Integrating with Multiple Partners.
Install TransformJson using npm:
npm install skrull-json
import transformJson from "skrull-json";
const inputJson = {
name: "Harsh",
age: "13"
};
const outputFormatJson = {
username: "",
userAge: "",
};
const mappingJson = {
"name": "username",
"age": "userage"
};
{
"username": "Harsh",
"userAge": "13"
}
const inputJson = {
user: {
name: "Harsh",
age: "13"
}
};
const outputFormatJson = {
username: "",
userAge: "",
};
const mappingJson = {
"user.name": "username",
"user.age": "userAge"
};
{
"username": "Harsh",
"userAge": "13"
}
const inputJson = {
name: "Harsh",
age: "13",
contact: {
email: "email@email.com",
phone:"1234"
}
};
const outputFormatJson = {
user: {
name:"",
contact: {
userEmail: "",
userPhone: ""
}
}
};
const mappingJson = {
"name": "user.name",
"contact.email": "user.contact.userEmail",
"contact.phone": "user.contact.userPhone"
};
{
user: {
name: 'Harsh',
contact: { userEmail: 'email@email.com', userPhone: '1234' }
}
}
const inputJson = {
user: [
{
firstName: "John",
lastName: "Wick",
age: 30,
address: {
street: "123 Elm St",
city: "Somewhere",
},
},
],
};
const outputFormatJson = {
name: "",
userAge: "",
userAddress: {
streetName: "",
city: "",
},
};
const mappingJson = {
"user[0].firstName": "name",
"user[0].age": "userAge",
"user[0].address.street": "userAddress.streetName",
"user[0].address.city": "userAddress.city",
};
{
name: 'John',
userAge: 30,
userAddress: { streetName: '123 Elm St', city: 'Somewhere' }
}
const inputJson = {
user:
{
firstName: "John",
lastName: "Wick"
}
};
const outputFormatJson = {
fullName: "",
};
const mappingJson = {
"{user.firstName} {user.lastName}": "fullName",
};
{
name: 'John Wick',
}
FAQs
Brings shapeshifting abilities to JSON. Converts json schemas using configuration mapping
We found that skrull-json 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.