Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@starnetbih/au2-api
Advanced tools
This library is a partial port of the excellent SpoonX/aurelia-api plugin for the Aurelia platform. It contains support for multiple endpoints, extending the functionalities supplied by aurelia HttpClient.
au2-api is a module wrapped around HttpClient that allows you to:
It depends on au2-configuration.
Full disclosure: this plugin is in alpha stage. Use at your own risk.
npm install @starnetbih/au2-api
or yarn add @starnetbih/au2-api
Inside of your main.ts/main.js file register the plugin on the register method:
import { AureliaApiConfiguration } from '@starnetbih/au2-api';
/* Configure in code */
Aurelia.register(AureliaApiConfiguration.configure(cfg => {
cfg.register('myApi1', '/mypath');
cfg.registerUsingCallback('myApi2', (cfg) => {
return cfg.withBaseUrl('/mypath'l)
},
{ headers: {'Accept': 'application/json'}
);
}));
/* Or configure by convention, using au2-configuration plugin */
Aurelia.register(AureliaApiConfiguration);
Make sure that your config.json used by au2-configuration plugin contains au2-api section:
{
"au2-api": {
"myApi1": {
"url": "http://localhost:5005"
},
"myApi2": {
"url": "http://localhost:5000",
"auth": true
}
}
}
Setting auth to true will include credentials with requests.
import { IApiEndpoints } from '@starnetbih/au2-api';
export class MyApp {
constructor(@IApiEndpoints private ApiEndpoints: IApiEndpoints) { }
async attached() {
const rest = this.ApiEndpoints.get('myApi1');
const resp = await rest.find('/ba/entities?pageSize=10');
console.log(resp);
const req = {
currentPage: 0,
pageSize: 10,
qry: {
"name": "filterByName",
"startsWith ": "Ag"
}
};
const resp2 = await rest.post({ resource: '/typeaheads', body: req });
console.log(resp2);
}
}
FAQs
Api plugin for aurelia 2 (alpha)
The npm package @starnetbih/au2-api receives a total of 0 weekly downloads. As such, @starnetbih/au2-api popularity was classified as not popular.
We found that @starnetbih/au2-api 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.