
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
ng2-http-wrapper
Advanced tools
https://hboylan.github.io/ng2-rest/demo/
Angular2 HTTP wrapper for REST client services
Install through npm:
npm install --save ng2-http-wrapper
Then use it in your app like so:
// demo.module.ts
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {RESTModule} from 'ng2-http-wrapper';
import {Demo} from './demo.component';
import {DemoService} from './demo.service';
@NgModule({
declarations: [Demo],
imports: [BrowserModule, RESTModule],
bootstrap: [Demo],
providers: [DemoService]
})
export class DemoModule {}
// demo.service.ts
import {Injectable} from '@angular/core';
import {Http, Request, Response} from '@angular/http';
import {RESTClient, BaseUrl, DefaultHeaders, GET, POST, Body, Query, Produces} from 'ng2-http-wrapper';
import {Observable} from 'rxjs/Observable';
@Injectable()
@BaseUrl('https://jsonplaceholder.typicode.com')
@DefaultHeaders({
'Accept': 'application/json',
'Content-Type': 'application/json'
})
export class DemoService extends RESTClient {
constructor(protected http: Http) {super(http)}
protected requestInterceptor(req: Request) {}
protected responseInterceptor(res: Observable<Response>): Observable<Response> {
return res
}
@POST('/posts')
public createPost(@Body post: Post): Observable<Response> {
return null;
}
@GET('/posts')
@Produces<Post[]>(res => <Post[]>res.json())
public getPosts(@Query('userId') userId?: number): Observable<Post[]> {
return null;
}
}
export class Post {
constructor(
public userId: number,
public title: string,
public body: string,
public id?: number
) {}
}
// demo.component.ts
import {Component, Input} from '@angular/core';
import {DemoService, Post} from './demo.service';
@Component(...)
export class Demo {
@Input() public demoPost: Post = new Post(1, 'Demo Title', 'Demo Body');
@Input() public demoList: Post[] = [];
constructor(public demoService: DemoService) {
this.getPosts();
}
createPost() {
this.demoService.createPost(this.demoPost);
}
getPosts() {
this.demoService.getPosts().subscribe(res => {
this.demoList = res;
});
}
}
All documentation is auto-generated from the source via typedoc and can be viewed here: https://hboylan.github.io/ng2-rest/docs/
npm install
while current directory is this repoRun npm start
to start a development server on port 8000 with auto reload + tests.
Run npm test
to run tests once or npm run test:watch
to continually run tests.
npm run release
MIT
FAQs
Angular2 HTTP wrapper for REST client services
The npm package ng2-http-wrapper receives a total of 1 weekly downloads. As such, ng2-http-wrapper popularity was classified as not popular.
We found that ng2-http-wrapper 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
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.