
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.
Fast and simple library for convert your data from server to store and backward.
npm install normik --save
If you find bag, please create ISSUE.
[
[field_name_server, field_name_client?, default_value?],
[field_name_server, field_name_client?, default_value?],
/// other fields
]
If not field_name_client will be set default field_name_server.
If you need set default value, but don't need set field_name_client, plese set
field_name_client = "";
If you need usage nesting, please use dot in field name
money.now
{
...other data
money: {
now: $value$
}
}
Example scheme convert
const scheme = [
["user_name", "userName"],
["age"],
["money.now", "moneyNow", 0],
["email", "", null],
["phones", "phone.bob"]
];
Example data from server
const data = {
"user_name": "bob",
"age": 7,
"money": {
"now": 10
},
"phones": [7914, 8914]
}
import { norm2Store } from "normik";
const res = norm2Store(data, scheme);
Result
{
"userName": "bob",
"age": 7,
"moneyNow": 10,
"email": null,
"phone": {
"bob": [7914, 8914]
}
}
import { norm2Server } from "normik";
const res = norm2Server(data, scheme);
Result
{
"user_name": "bob",
"age": 7,
"money": {
"now": 10
},
"email": null,
"phones": [7914, 8914]
}
FAQs
Fast and simple library for convert your data from server to store and backward.
We found that normik 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.