
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
angular-base-service
Advanced tools
To install this library, run:
$ npm install angular-base-service --save
Once you have published your library to npm, you can import the library AppModule:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import your library
import { NgBaseServiceModule } from 'angular-base-service';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Specify your library as an import
NgBaseServiceModule.forRoot({
// will be prepended to all http calls, defaults to ''
baseServiceUrl: 'https://baseUrl.com',
// will be sent with all http calls headers as `token:mySecretKey`,
// unless specified in the `request` object, which takes precedence
baseServiceKey: 'mySecretKey',
})
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Once your library is imported, refer to the base-test.service.ts file
for an example of how to use it, and test it
To generate all *.js, *.d.ts and *.metadata.json files:
$ npm run build
To lint all *.ts files:
$ npm run lint
MIT © Mark Massoud
FAQs
## Installation
The npm package angular-base-service receives a total of 6 weekly downloads. As such, angular-base-service popularity was classified as not popular.
We found that angular-base-service 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.