
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.
@mbamobi/http
Advanced tools
Requisição HTTP através de eventos com adição de plugins para interceptação
This allow define urls Http using url-resolver to make request Http and intercept with plugins/events to analisy responses
import { NgModule } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';
import { MyApp } from './app.component';
// import configuration module
import { ConfigurationModule } from '@mbamobi/configuration';
// import url-resolver module
import { UrlResolverModule } from '@mbamobi/url-resolver';
// Import http module
import { HttpModule, DefaultPlugins } from '@mbamobi/http';
export const APP_CONFIG = {
'urlResolver': {
'dev': {
'_defaults': {
'host': 'http://api.example.com/'
},
'user': {
'url': 'user/{id}',
'method': 'GET',
'headers': {
'content-type': 'application/json'
},
'params': {
'id': {
'type': 'number',
'required': true
}
}
}
}
}
};
@NgModule({
declarations: [
MyApp
],
imports: [
IonicModule.forRoot(MyApp),
ConfigurationModule.initialize(APP_CONFIG, 'dev')
UrlResolverModule.initialize(),
HttpModule.initialize(DefaultPlugins) // http module with plugin parseResponse
],
bootstrap: [IonicApp],
entryComponents: [
MyApp
]
})
export class AppModule {}
Contributing
See CONTRIBUTING.md
FAQs
Requisição HTTP através de eventos com adição de plugins para interceptação
The npm package @mbamobi/http receives a total of 68 weekly downloads. As such, @mbamobi/http popularity was classified as not popular.
We found that @mbamobi/http demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
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.