@lemoncloud/lemon-web-core
v1.5.3
Published
Core Web-based Library for signing request at LEMONCLOUD
Downloads
99
Readme
Table of Contents
Installation
You can install the LemonWebCore Library via npm:
npm install @lemoncloud/lemon-web-coreUsage
The LemonWebCore Library allows you to create and use instances for different cloud providers. Below are the usage examples for WebCoreFactory, AWSWebCore, and AzureWebCore. Please see documentation for more information.
WebCoreFactory
The WebCoreFactory is used to create instances of AWSWebCore or AzureWebCore based on the cloud provider configuration.
- AWSWebCore
import { WebCoreFactory, WebCoreConfig } from '@lemoncloud/lemon-web-core';
const config: WebCoreConfig<'aws'> = {
cloud: 'aws',
project: 'my-aws-project',
oAuthEndpoint: 'https://example.com/oauth',
region: 'us-west-2',
};
const awsWebCore = WebCoreFactory.create(config);
await awsWebCore.init();- AzureWebCore
const azureConfig: WebCoreConfig<'azure'> = {
cloud: 'azure',
project: 'my-azure-project',
oAuthEndpoint: 'https://example.com/oauth',
};
const azureWebCore = WebCoreFactory.create(azureConfig);
await azureWebCore.init();AWSWebCore
The AWSWebCore class handles AWS-specific web core operations. Here is an example of how to use it:
import { AWSWebCore, WebCoreConfig } from '@lemoncloud/lemon-web-core';
const config: WebCoreConfig<'aws'> = {
cloud: 'aws',
project: 'my-aws-project',
oAuthEndpoint: 'https://example.com/oauth',
region: 'us-west-2',
};
const awsWebCore = new AWSWebCore(config);
// Initialize
await awsWebCore.init();
// Make a signed request
const response = await awsWebCore.signedRequest('GET', 'https://example.com/api/resource');
console.log(response.data);
// Make a signed request with Builder
const example = await awsWebCore
.buildSignedRequest({
method: 'GET',
baseURL: `https://api.lemoncloud.io/v1/oauth`,
})
.setParams({ page: 0 })
.setBody({ date: 'example' })
.execute();
// Check authentication status
const isAuthenticated = await awsWebCore.isAuthenticated();
console.log(isAuthenticated);AzureWebCore
The AzureWebCore class handles Azure-specific web core operations. Here is an example of how to use it:
import { AzureWebCore, WebCoreConfig } from '@lemoncloud/lemon-web-core';
const config: WebCoreConfig<'azure'> = {
cloud: 'azure',
project: 'my-azure-project',
oAuthEndpoint: 'https://example.com/oauth',
};
const azureWebCore = new AzureWebCore(config);
// Initialize
await azureWebCore.init();
// Make a signed request
const response = await azureWebCore.signedRequest('GET', 'https://example.com/api/resource');
console.log(response.data);
// Make a signed request with Builder
const example = await azureWebCore
.buildSignedRequest({
method: 'GET',
baseURL: `https://api.lemoncloud.io/v1/oauth`,
})
.setParams({ page: 0 })
.setBody({ date: 'example' })
.execute();
// Check authentication status
const isAuthenticated = await azureWebCore.isAuthenticated();
console.log(isAuthenticated);API Reference
WebCoreFactory
create<T extends WebCoreService>(config: WebCoreConfig<CloudProvider>): T
Creates an instance of AWSWebCore or AzureWebCore based on the provided cloud provider configuration.
AWSWebCore
constructor(config: WebCoreConfig<'aws'>)
Creates an instance of AWSWebCore with the specified configuration.
init(): Promise<void>
Initializes the AWSWebCore instance.
signedRequest<T>(method: string, url: string, params?: Params, body?: Body, config?: AxiosRequestConfig): Promise<HttpResponse<T>>
Makes a signed HTTP request.
isAuthenticated(): Promise<boolean>
Checks if the user is authenticated.
saveOAuthToken(token: LemonOAuthToken): Promise<void>
Saves the OAuth token.
logout(): Promise<void>
Logs the user out by clearing the OAuth token.
setUseXLemonIdentity(use: boolean): Promise<void>
Sets whether to use the x-lemon-identity header.
AzureWebCore
constructor(config: WebCoreConfig<'azure'>)
Creates an instance of AzureWebCore with the specified configuration.
init(): Promise<void>
Initializes the AzureWebCore instance.
signedRequest<T>(method: string, url: string, params?: Params, body?: Body, config?: AxiosRequestConfig): Promise<HttpResponse<T>>
Makes a signed HTTP request.
isAuthenticated(): Promise<boolean>
Checks if the user is authenticated.
saveOAuthToken(token: LemonOAuthToken): Promise<void>
Saves the OAuth token.
logout(): Promise<void>
Logs the user out by clearing the OAuth token.
setUseXLemonIdentity(use: boolean): Promise<void>
Sets whether to use the x-lemon-identity header.
Axios Instance Management
The WebCore provides a shared Axios instance management feature. This allows you to configure a single Axios instance that can be reused across multiple requests, which is particularly useful for setting up global interceptors or common configurations.
Getting the Shared Axios Instance
const webCore = WebCoreFactory.create({ cloud: 'aws', ... });
const axiosInstance = webCore.getSharedAxiosInstance();Setting Up Interceptors
// Request Interceptor
webCore.getSharedAxiosInstance().interceptors.request.use(config => {
// Add custom headers or modify request config
return config;
});
// Response Interceptor
webCore.getSharedAxiosInstance().interceptors.response.use(response => {
// Process response data
return response;
});Usage with Builders
The shared Axios instance is automatically used when creating request builders:
// Using with regular request builder
const request = webCore.buildRequest({
method: 'GET',
baseURL: 'https://api.example.com',
});
// Using with AWS signed request builder
const signedRequest = webCore.buildSignedRequest({
method: 'GET',
baseURL: 'https://api.example.com',
});Both builders will use the same shared Axios instance, ensuring that any global configurations or interceptors are consistently applied across all requests.
Troubleshooting
Please follow this guidelines when reporting bugs and feature requests:
- Use GitHub Issues board to report bugs and feature requests (not our email address)
- Please always write steps to reproduce the error. That way we can focus on fixing the bug, not scratching our heads trying to reproduce it.
Thanks for understanding!
Please Star ⭐️
If this project has been helpful to you, I would greatly appreciate it if you could click the Star⭐️ button on this repository!
