![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
The HAL+JSON Resource Object.
npm install halson --save
bower install halson --save
var halson = require('halson');
var embed = halson({
title: "joyent / node",
description: "evented I/O for v8 javascript"
})
.addLink('self', '/joyent/node')
.addLink('author', {
href: '/joyent',
title: 'Joyent'
});
var resource = halson({
title: "Juraj Hájovský",
username: "hajovsky",
emails: [
"juraj.hajovsky@example.com",
"hajovsky@example.com"
]
})
.addLink('self', '/hajovsky')
.addEmbed('starred', embed);
console.log(resource.title);
console.log(resource.emails[0]);
console.log(resource.getLink('self'));
console.log(resource.getEmbed('starred'));
console.log(JSON.stringify(resource));
halson([data])
Create a new HAL+JSON Resource Object.
data
(optional): Initial data as serialized string or Object.// empty HAL+JSON Resource Object
var resource = halson();
// resource from a serialized data
var resource = halson('{title:"Lorem Ipsum",_links:{self:{href:"/ipsum"}}');
// resource from an Object
resource = halson({
_links: {
self: {
href: {"/ipsum"}
}
},
title: "Lorem Ipsum"
});
// resource from another resource (no-op)
var resourceX = halson(resource);
console.log(resource === resourceX); // true
HALSONResource#listLinkRels()
List all link relations.
var data = {
_links: {
self: {href: '/hajovsky'},
related: [
{href: 'http://hajovsky.sk'},
{href: 'https://twitter.com/hajovsky'}
]
}
}
var resource = halson(data);
console.log(resource.listLinkRels()); // ['self', 'related']
HALSONResource#listEmbedRels()
List all link relations.
var data = {
_embedded: {
starred: {
_links: {
self: {href: '/joyent/node'}
}
title: "joyent / node",
description: "evented I/O for v8 javascript"
}
}
}
var resource = halson(data);
console.log(resource.listEmbedRels()); // ['starred']
HALSONResource#getLinks(rel, [filterCallback, [begin, [end]]])
Get all links with relation rel
.
rel
(required): Relation name.filterCallback
(optional): Function used to filter array of links. docbegin
, end
(optional): slice filtered links. docvar twitterLinks = resource.getLinks('related', function(item) {
return item.name === "twitter";
});
HALSONResource#getLink(rel, [filterCallback, [default]])
Get first link with relation rel
.
rel
(required): Relation name.filterCallback
(optional): Function used to filter array of links. docdefault
(optional): Default value if the link does not exist.var firstRelatedLink = resource.getLink('related');
HALSONResource#getEmbeds(rel, [filterCallback, [begin, [end]]])
Get all embedded resources with relation rel
.
rel
(required): Relation name.filterCallback
(optional): Function used to filter array of embeds. docbegin
, end
(optional): slice filtered links. docvar embeds = resource.getEmbeds('starred');
HALSONResource#getEmbed(rel, [filterCallback, [default]])
Get first embedded resource with relation rel
.
rel
(required): Relation name.filterCallback
(optional): Function used to filter array of embeds. docdefault
(optional): Default value if the link does not exist.var nodeProject = resource.getEmbed('starred', function(embed) {
return embed.getLink('self', {}).href === '/joyent/node';
});
HALSONResource#addLink(rel, link)
Add a link with relation rel
.
rel
(required): Relation name.link
(required): Link to be added (string or Object).resource
.addLink('related', 'http://hajovsky.sk')
.addLink('related', {
href: 'https://twitter.com/hajovsky',
name: 'twitter'
});
HALSONResource#addEmbed(rel, embed)
Add a nested resource with relation rel
.
rel
(required): Relation name.embed
(required): Resource to be embedded (Object or HALSONResource).var embed = {
_links: {
self: {href: '/joyent/node'}
},
title: "joyent / node"
}
resource.addEmbed('starred', embed);
HALSONResource#insertEmbed(rel, index, embed)
Add a nested resource with relation rel
.
rel
(required): Relation name.index
(required): Index number where embed will be insertedembed
(required): Resource to be embedded (Object or HALSONResource).var embed = {
_links: {
self: {href: '/joyent/node'}
},
title: "joyent / node"
};
resource.addEmbed('starred', embed); // add embed
var embed2 = {
_links: {
self: {href: '/joyent/node'}
},
title: "joyent / node"
};
resource.insertEmbed('starred', 0, embed2); // insert new embed before first item
HALSONResource#removeLinks(rel, [filterCallback])
Remove links with relation rel
. If filterCallback
is not defined, all links with relation rel
will be removed.
rel
(required): Relation name.filterCallback
(optional): Function used to filter array of links. doc// remove links with relation 'related' and name 'twitter'
resource.removeLinks('related', function(link) {
return link.name === "twitter";
});
HALSONResource#removeEmbeds(rel, [filterCallback])
Remove embedded resources with relation rel
. If filterCallback
is not defined, all embeds with relation rel
will be removed.
rel
(required): Relation name.filterCallback
(optional): Function used to filter array of links. doc// remove embedded resources with relation 'starred' and self-link '/koajs/koa'
resource.removeLinks('starred', function(embed) {
return embed.getLink('self', {}).href === '/koajs/koa';
});
Release 2.3.0 (2015-01-11)
FAQs
The HAL+JSON Resource Object
The npm package halson receives a total of 5,214 weekly downloads. As such, halson popularity was classified as popular.
We found that halson demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.