JSPM

  • Created
  • Published
  • Downloads 41
  • Score
    100M100P100Q69093F
  • License MIT

Backend Kit.

Package Exports

  • @fangcha/backend-kit
  • @fangcha/backend-kit/lib/index.js
  • @fangcha/backend-kit/lib/profile
  • @fangcha/backend-kit/lib/profile/index.js
  • @fangcha/backend-kit/lib/router
  • @fangcha/backend-kit/lib/router/index.js
  • @fangcha/backend-kit/lib/sso
  • @fangcha/backend-kit/lib/sso/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@fangcha/backend-kit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Backend Kit

Installation

# Use npm
npm install @fangcha/backend-kit

# Or use yarn
yarn add @fangcha/backend-kit

Usage

import { FangchaApp } from '@fangcha/backend-kit'

const app = new FangchaApp({
  ……
})
app.launch()

OR

import { WebApp } from '@fangcha/backend-kit/lib/router'

const app = new WebApp({
  ……
})
app.launch()