# mallfoundry-js **Repository Path**: mallfoundry/mallfoundry-js ## Basic Information - **Project Name**: mallfoundry-js - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2020-12-28 - **Last Updated**: 2022-01-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Mallfoundry.js > Mallfoundry 的 REST 客户端。 ## 使用 ``` import { configure } from "@mallfoundry/client" import { AxiosHttpClient } from "@mallfoundry/client/axios" import { ProductService } from "@mallfoundry/catalog" configure({ clientClass: AxiosHttpClient, urls: "http://localhost:8077", }) const product = await ProductService.getProduct("id") console.log(product) ```