@albdigitalteam/core v1.65.0
NOTE: The architecture of this project follows the criteria defined by the ALB Digital Team's Team Front-end. All procedures and standards expected in the development can be consulted on the official Wiki on Azure DevOps. This documentation is intended to explain how to develop, test, build, and release application.
ALB Digital Team Core contains foundational javascript library that provides platform-independent classes and rules.
Services is a comprehensive javascript module to assist in http communication between apis and data manipulation.
Utils is a collection of JS utilities to help you quickly in any project.
Installation
@albdigitalteam/core
ALB Digital Team Core is available as an npm package.
// with npm
$ npm install @albdigitalteam/core --save
// with yarn
$ yarn add @albdigitalteam/core
Getting started
Here is an example of a basic app using HttpClient
service:
import { HttpClientService, IHttpClient } from '@albdigitalteam/core/services'
class FooService {
constructor(private readonly httpClient: IHttpClient) {}
bar = () => this.httpClient.get('/baz/kuux')
}
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago