![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.
@har-sdk/core
Advanced tools
The base package can be used to import specification files (i.e. HAR, OAS and Postman Collection) and detect their type.
The base package can be used to import specification files (i.e. HAR, OAS and Postman Collection) and detect their type.
npm i --save @har-sdk/core
To import a specification you just need to create an instance of SpecImporter
and call its import
method passing the data file. The importer performs syntactic analysis and parses a provided file.
import { SpecImporter } from '@har-sdk/core';
const result = await new SpecImporter().import(sourceAsString);
console.log(result);
// {
// type: 'postman',
// format: 'json',
// doc: {
// info: {
// name: 'Postman Sample',
// schema: 'https://schema.getpostman.com/json/collection/v2.1.0/collection.json'
// },
// item: [
// // ...
// ]
// },
// name: 'Postman Sample.json'
// }
To configure the list of importers, you can pass them as an array to the constructor.
import { SpecImporter, HarImporter } from '@har-sdk/core';
const explorer = new SpecImporter([new HarImporter()]);
To extend an explorer by adding a new custom importer, you can easily implement an Importer
interface.
import { Importer, Doc, Spec, Importer } from '@har-sdk/core';
class RamlImporter implements Importer<'raml'> {
get type(): 'raml' {
return 'raml';
}
async import(content: string): Promise<Spec<'raml'>> {
// your code
return {
// other fields
type: this.type,
format: 'yaml'
};
}
}
The package also contains a set of useful utilities like normalizeUrl
:
import { normalizeUrl } from '@har-sdk/core';
normalizeUrl('HTTP://example.COM////foo////dummy/../bar/?'); // http://example.com/foo/bar
FAQs
The base package can be used to import specification files (i.e. HAR, OAS and Postman Collection) and detect their type.
The npm package @har-sdk/core receives a total of 0 weekly downloads. As such, @har-sdk/core popularity was classified as not popular.
We found that @har-sdk/core 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.