Angular 4 skeleton to kick start your SDK!
npm install @skl/ngx.skeleton --saveimport { SkeletonModule } from "@skl/ngx.skeleton";
@NgModule({
imports: [SkeletonModule]
})
export class AppModule {
}import { SkeletonService } from "@skl/ngx.skeleton";
@Injectable()
constructor(
private skeletonService: SkeletonService
) {
}
// get
skeletonService.get("http://xxx/:id", {
id: "lobby"
});The following process need to be executed in order to get started.
npm installgulp buildIn order to view all other tasks invoke gulp or check the gulp tasks directly.
gulp testHandles compiling of changes.
gulp watchSpawns test runner and keep watching for changes.
gulp tdd
gulp prepare-release --bump major|minor|patch|prerelease (default: patch) --version-suffix beta (default: rc - only applies to prerelease)