
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
Helper library for JavaScript
npm install orcorum
npm test
To create a class of your own base class, you extend your base class and provide instance properties, as well as optional statics to be attached directly to the constructor function.
function Animal(name) {
this.name = name;
}
Animal.prototype.getName = function() {
return this.name;
};
Animal.extend = orcorum.classes.extend;
// ...
var Dog = Animal.extend({
bark: function() {
return 'GUAUUU!!!'
}
});
var dog = new Dog('pepito');
console.log(dog.name); // => pepito
console.log(dog.bark()); // => GUAUUU!!!
Get property of target.
orcorum.object.get({
name: 'pepito',
age: 3
}, 'age'); // => 3
orcorum.object.get({
name: {
first: 'pepito',
last: 'roman'
},
age: 3
}, ['name', 'first']); // => pepito
orcorum.object.get({
name: {
first: 'pepito',
last: 'roman'
},
age: 3
}, ['name', 'alias'], 'pepe'); // => pepe
orcorum.object.get({
name: {
first: 'pepito',
last: 'roman'
},
age: 3
}, ['works', 'first', 'beginDate']); // => undefined
Set property in target.
orcorum.object.set({
name: 'pepito',
age: 3
}, 'name', 'josecito'); // => {name: 'josecito', age: 3}
orcorum.object.set({
name: {
first: 'pepito',
last: 'roman'
},
age: 3
}, ['name', 'first'], 'josecito'); // => {name: {first: 'josecito', last: 'roman'}, age: 3}
orcorum.object.set({
name: {
first: 'pepito',
last: 'roman'
},
age: 3
}, ['name', 'alias'], 'pepe'); // => {name: {first: 'pepito', last: 'roman', alias: 'pepe'}, age: 3}
Override properties of target with the all properties in the source objects (in-order), and return the target object.
orcorum.object.extend({
name: 'pepito',
age: 3
}, {
age: 4
}); // => {name: 'pepito', age: 4}
orcorum.object.extend({
name: {
first: 'pepito',
last: 'roman'
},
age: 3
}, {
name: {
last: 'robin'
}
}); // => {name: {first: 'pepito', last: 'robin'}, age: 3}
Normalize url path.
console.log(orcorum.url.normalize('')); // => Client size '' - Server side '/'
console.log(orcorum.url.normalize('/path/to')); // => /path/to
console.log(orcorum.url.normalize('/path/to/')); // => /path/to
console.log(orcorum.url.normalize('http://www.mysite.com')); // => http://www.mysite.com
Add or return url params.
console.log(orcorum.url.params('')); // => {}
console.log(orcorum.url.params('/path/to?search=auto')); // => {search: 'auto'}
console.log(orcorum.url.params('/path/to?search=auto&country=ar', 'country')); // => ar
console.log(orcorum.url.params('/path/to?search=auto&country=ar', 'country', 'en')); // => /path/to?search=auto&country=en
console.log(orcorum.url.params('/path/to', {
search: 'auto',
country: 'ar'
})); // => /path/to?search=auto&country=ar
Remove url params.
console.log(orcorum.url.removeParams('/path/to?search=auto&country=ar', 'country')); // => /path/to?search=auto
console.log(orcorum.url.removeParams('/path/to?search=auto', 'search')); // => /path/to
Remove all url params.
console.log(orcorum.url.cleanParams('/path/to?search=auto&country=ar')); // => /path/to
console.log(orcorum.url.cleanParams('/path/to?search=auto')); // => /path/to
Time in milliseconds.
console.log(orcorum.time.SECOND); // => 1000
console.log(orcorum.time.MINUTE); // => 60000
console.log(orcorum.time.HOUR); // => 3600000
console.log(orcorum.time.DAY); // => 86400000
console.log(orcorum.time.MONTH); // => 2592000000
console.log(orcorum.time.YEAR); // => 31104000000
Time in milliseconds.
console.log(orcorum.http.method.GET); // => 'get'
console.log(orcorum.http.method.POST); // => 'post'
// ...
console.log(orcorum.http.status.OK); // => 200
console.log(orcorum.http.status.SUCCESS); // => 200
console.log(orcorum.http.status.NO_CONTENT); // => 204
// ...
console.log(orcorum.http.type.FORM); // => 'application/x-www-form-urlencoded'
console.log(orcorum.http.type.MULTIPART); // => 'multipart/form-data'
// ...
Requires all files in a directory into an object with the same structure.
excludes Files excludes. Defaults to ['index'].extension Files extension. Only require the file match with this extension. Defaults to '.js'].orcorum.fs.requiredirSync(__dirname);
// Or
orcorum.fs.requiredirSync(__dirname, {
excludes: ['my_exclude_file']
});
// Or
orcorum.fs.requiredirSync(__dirname, {
extension: '.json'
});
FAQs
Helper library for JavaScript
The npm package orcorum receives a total of 4 weekly downloads. As such, orcorum popularity was classified as not popular.
We found that orcorum 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.