
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.
cnd-parser is copyright 2015 by DracoBlue http://dracoblue.net
This is a small (nodejs/browserify) library for parsing CND-Strings (defined in jsr-170 and explained at jackrabbit).
This implementation doesn't support the full CND-syntax.
This example:
<ns = 'http://namespace.com/ns'>
[ns:NodeType] > ns:ParentType1, ns:ParentType2
orderable mixin
- ex:property (string) primary mandatory autocreated protected multiple version
+ ns:node (ns:reqType1, ns:reqType2) mandatory autocreated protected multiple version
[nt:resource] > mix:referenceable
- jcr:encoding
- jcr:mimeType mandatory
- jcr:data (binary) mandatory
- jcr:lastModified (date) mandatory ignore
can be parsed (in nodejs) like this:
cnd = cndParser.parseString('/* string here! */');
console.log(JSON.stringify(cnd.getNodeTypes(), null, 4));
Output:
[
{
"options": {
"orderable": true,
"mixin": true
},
"properties": [
{
"options": {
"primary": true,
"mandatory": true,
"autocreated": true,
"protected": true,
"multiple": true,
"version": true
},
"namespacedName": "ex:property",
"localName": "property",
"namespace": "ex",
"types": [
"string"
]
}
],
"childNodes": [
{
"options": {
"mandatory": true,
"autocreated": true,
"protected": true,
"multiple": true,
"version": true
},
"namespacedName": "ns:node",
"localName": "node",
"namespace": "ns",
"types": [
"ns:reqType1",
"ns:reqType2"
]
}
],
"namespacedName": "ns:NodeType",
"localName": "NodeType",
"namespace": "ns",
"superTypes": [
"ns:ParentType1",
"ns:ParentType2"
]
},
{
"options": {},
"properties": [
{
"options": {},
"namespacedName": "jcr:encoding",
"localName": "encoding",
"namespace": "jcr"
},
{
"options": {
"mandatory": true
},
"namespacedName": "jcr:mimeType",
"localName": "mimeType",
"namespace": "jcr"
},
{
"options": {
"mandatory": true
},
"namespacedName": "jcr:data",
"localName": "data",
"namespace": "jcr",
"types": [
"binary"
]
},
{
"options": {
"mandatory": true,
"ignore": true
},
"namespacedName": "jcr:lastModified",
"localName": "lastModified",
"namespace": "jcr",
"types": [
"date"
]
}
],
"childNodes": [],
"namespacedName": "nt:resource",
"localName": "resource",
"namespace": "nt",
"superTypes": [
"mix:referenceable"
]
}
]
The cnd-parser project is licensed under the MIT License. See LICENSE for more information.
FAQs
A parser for JCR's CND files.
The npm package cnd-parser receives a total of 8 weekly downloads. As such, cnd-parser popularity was classified as not popular.
We found that cnd-parser 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.