
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.
planetside-census-request
Advanced tools
An API wrapper to request data from the Census API.
import CensusRequest from 'planetside-census-request';
import { NamespaceType } from 'planetside-census-data';
interface ICharacterFaction {
character_id: string;
faction_id: number;
}
const api = new CensusRequest(NamespaceType.PC, 's:example')
const getCharacters = async (
ids: stirng[],
collection: string = undefined
) => {
return await api.get<ICharacterFaction[]>({
uri: 'character',
params: {
'character_id': ids.join(','),
'c:show': ['character_id','faction_id']
},
collection
});
}
const characters = await getCharacters([
'54200000000000000',
'54200000000000001'
], 'character_list');
console.log(characters);
// [
// {
// character_id: '54200000000000000',
// faction_id: 1,
// },
// {
// character_id: '54200000000000001',
// faction_id: 2,
// }
// ]
import CensusRequest from 'planetside-census-request';
import { NamespaceType } from 'planetside-census-data';
interface ICharacterFaction {
character_id: string;
faction_id: number;
}
const api = new CensusRequest(NamespaceType.PC, 's:example')
const getCharacters = async (
ids: stirng[],
collection: string = undefined
) => {
return await api.get<ICharacterFaction[]>({
uri: 'character',
params: {
'character_id': ids.join(','),
'c:show': ['character_id','faction_id']
},
collection
});
}
const characters = await getCharacters([
'54200000000000000',
'54200000000000001'
]);
console.log(characters);
// {
// character_list: [
// {
// character_id: '54200000000000000',
// faction_id: 1,
// },
// {
// character_id: '54200000000000001',
// faction_id: 2,
// }
// ],
// returned: 2
// }
FAQs
An API wrapper to request data from the Census API.
We found that planetside-census-request 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.