Skip to content

A library that implements the Abstract & Compose design pattern, write you API or web service on any framework -- then switch.

Notifications You must be signed in to change notification settings

sodiray/exobase-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Ray EppsRay Epps
Ray Epps
and
Ray Epps
Jul 8, 2024
5f4f68c · Jul 8, 2024
Dec 27, 2022
Feb 19, 2024
Jul 8, 2024
Dec 27, 2022
Nov 20, 2022
Nov 20, 2022
Nov 20, 2022
Nov 20, 2022
Feb 22, 2023
Nov 20, 2022
Nov 20, 2022
Dec 27, 2022
Jan 3, 2023
Feb 19, 2024
Feb 19, 2024
Nov 20, 2022
Feb 21, 2024

Repository files navigation

Exobase

radash

Typescript Framework for Node Web Services & APIs

Install

To keep your dependencies lean, Exobase is split into seperate packages for each hook (learn about hooks here) + a core package. To install, you have two options.

  1. Install everything. This is the easiest way to get started quickly.
yarn add @exobase/core @exobase/hooks
  1. Only install what you need. If you only need the useJsonArgs and useCors hooks then only install those packages.
yarn add @exobase/use-json-args @exobase/use-cors

A lot of thought and effort is put into keeping the hooks small, minimal, and lean. The root hooks however typically depend on the framework libraries so you'll want to make sure you're only installing the specific ones you need.

yarn add @exobase/use-lambda
yarn add @exobase/use-express
yarn add @exobase/use-next

Getting Started

Using our Express example project you can have an API running in a few minutes. Here's a simple health check endpoint.

import { compose } from 'radash'
import type { Props } from '@exobase/core'
import { useExpress } from '@exobase/use-express'

export const ping = async ({ args, services }: Props<Args, Services>) => {
  return {
    message: 'pong'
  }
}

export default compose(useExpress(), ping)

About

A library that implements the Abstract & Compose design pattern, write you API or web service on any framework -- then switch.

Topics

Resources

Stars

Watchers

Forks