
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.
Convert JSON to ASCII Table
npm install -g 2table
Example test.json
[
{
"addressLine1": "1333 2ND ST",
"city": "SANTA MONICA",
"state": "CA",
"zip5": "90401",
"zip4": "4100",
"info": {
"carrierRoute": "C002",
"countyName": "LOS ANGELES",
"deliveryPoint": "99",
"checkDigit": "3",
"cmar": "N"
}
},
{
"addressLine1": "1333 2ND ST STE 200",
"city": "SANTA MONICA",
"state": "CA",
"zip5": "90401",
"zip4": "1151",
"info": {
"carrierRoute": "C002",
"countyName": "LOS ANGELES",
"deliveryPoint": "99",
"checkDigit": "0",
"cmar": "N"
}
},
{
"addressLine1": "1333 2ND ST FL 1",
"city": "SANTA MONICA",
"state": "CA",
"zip5": "90401",
"zip4": "4104",
"info": {
"carrierRoute": "C002",
"countyName": "LOS ANGELES",
"deliveryPoint": "99",
"checkDigit": "9",
"cmar": "N"
}
}
]
cat test.json | 2table "addressLine1,city,state,zip5"
addressLine1 city state zip5
1333 2ND ST SANTA MONICA CA 90401
1333 2ND ST STE 200 SANTA MONICA CA 90401
1333 2ND ST FL 1 SANTA MONICA CA 90401
cat test.json | 2table "addressLine1:Address,city:City,state:State,zip5:ZipCode"
Address City State ZipCode
1333 2ND ST SANTA MONICA CA 90401
1333 2ND ST STE 200 SANTA MONICA CA 90401
1333 2ND ST FL 1 SANTA MONICA CA 90401
cat test.json | 2table "addressLine1:Address{width:11},city:City,state:State,zip5:ZipCode"
Address City State ZipCode
1333 2ND ST SANTA MONICA CA 90401
1333 2ND ST SANTA MONICA CA 90401
STE 200
1333 2ND ST SANTA MONICA CA 90401
FL 1
cat test.json | 2table "addressLine1:Address{width:11;color:red},city:City,state:State{color:cyan},zip5:ZipCode"
Address City State ZipCode
1333 2ND ST SANTA MONICA CA 90401
1333 2ND ST SANTA MONICA CA 90401
STE 200
1333 2ND ST SANTA MONICA CA 90401
FL 1
cat test.json | 2table "addressLine1:Address,city:City,state:State,zip5:ZipCode,info:Details[countyName:County,carrierRoute:Route]"
Address City State ZipCode Details
County Route
1333 2ND ST SANTA MONICA CA 90401 LOS ANGELES C002
1333 2ND ST STE 200 SANTA MONICA CA 90401 LOS ANGELES C002
1333 2ND ST FL 1 SANTA MONICA CA 90401 LOS ANGELES C002
FAQs
Convert JSON to ASCII Table
The npm package 2table receives a total of 24 weekly downloads. As such, 2table popularity was classified as not popular.
We found that 2table 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.