![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.
neuron-normalize
Advanced tools
Normalize a module id to a url to a standard pathname.
$ npm install neuron-normalize --save
var options = {
root: '/mod'
};
var normalize = require('neuron-normalize')(options);
normalize.parse('zepto');
->
{
package: 'zepto@*',
package_name: 'zepto',
id: 'zepto@*/zepto.js',
version: '*',
path: '/zepto.js'
}
normalize.to_url('zepto');
->
'/mod/zepto/*/zepto.js'
normalize.to_package('/mod/zepto/*/zepto.js');
->
{
package: 'zepto@*',
package_name: 'zepto',
id: 'zepto@*/zepto.js',
version: '*',
path: '/zepto.js'
}
String
Absolute path from root to the module. Requiredtype: Object
- package: <module_name>@<version>
- package_name: `<module_name>`
- id: `<module_name>@<version><file_path>`
- version: `<major>.<minor>.<patch>`, default to `'*'`
- path: `/path/to/<filename>.<ext>`, default to `/<package-name>.js`
String
formatted module idReturns Object
Module File Object
String
formatted module id'zepto@1.0.0/lib/zepto.js'
Returns Path
Absolute pathname of a file to the id, or undefined
if not id passed in.
'/mod/zepto/1.0.0/lib/zepto.js'
Path
Absolute pathname of a file'/mod/zepto/*/zepto.js'
Returns Object
Module File Object
MIT
FAQs
neuron-normalize
The npm package neuron-normalize receives a total of 2 weekly downloads. As such, neuron-normalize popularity was classified as not popular.
We found that neuron-normalize 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.