defjs
0.3.0
def
— это аббревиатура от define
, поэтому его можно читать как define js
.
Defjs — это библиотека, которая помогает вам определять и инициировать запросы, чтобы вам было проще определять запросы, не беспокоясь о деталях.
Использовать для менеджера пакетов
npm install @defjs/core
// or
yarn install @defjs/core
// or
pnpm install @defjs/core
// or
bun install @defjs/core
Использовать для CDN
Можно использовать только модули ES
import {
createGlobalClient ,
defineRequest ,
field
} from 'https://unpkg.com/@defjs/core/index.min.js' ;
/**
* @title Step 1
* @file src/main.ts
* @description Setting up a global client
*/
createGlobalClient ( {
host : 'https://example.com' ,
} ) ;
/**
* @title Step 2
* @file src/lib/api/user.ts
* @description Define the request api request in the lib/api directory of the project
*/
const useGetUser = defineRequest ( '/v1/user/:id' )
. withField ( {
id : field < number > ( ) . withParam ( )
} )
/**
* @title Step 3
* @file src/pages/home.ts
* @description Use defined requests in business code
*/
const { doRequest } = useGetUser ( ) ;
const { error , body } = await doRequest ( { id : 1 } ) ;
if ( error ) {
console . error ( error ) ;
return ;
}
console . log ( body ) ;
Проверьте ? defjs.org, чтобы начать.
Упаковка | Версия |
---|---|
@defjs/ядро | |
@defjs/угловой |
Массачусетский технологический институт