Firebase admin SDK for Node.js
Pretender is a mock server library for XMLHttpRequest and Fetch, that comes with an express/sinatra style syntax for defining routes and their handlers.
A frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI
Contains types related to administering a Bedrock Dedicated Server. These types allow for the configuration of variables and secrets in JSON files in the Bedrock Dedicated Server folder. These types cannot be used on Minecraft clients.
Strapi Admin
English messages for react-admin, the frontend framework for building admin applications on top of REST/GraphQL services
Shopify Admin API Client - A lightweight JS client to interact with Shopify's Admin API
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
Cloud Run Admin API
A client to interact with Keycloak's Administration API
admin
Polyglot i18n provider for react-admin
UI Components for react-admin with Material UI
AWS SDK for JavaScript Sso Admin Client for Node.js, Browser and React Native
Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks
Keycloak Admin Client compiled in CommonJS.
Simple REST data provider for react-admin
Shared code for Medusa admin packages.
Api paths of @mocks-server/plugin-admin-api
The Node-RED admin command line interface
Mocks Server plugin providing an administration REST API
Bundler for the Medusa admin dashboard.
Admin client for Node.js
SDK for building extension for the Medusa admin dashboard.
Sinatra application that allow us to have an admin dashboard with minimal effort.
PopulateMe is an admin system for managing structured content of web applications. It is built on top of the Sinatra framework, but can be used along any framework using Rack.
# Kaffe Framework This is a minimalistic webframework inspired by sinatra and rails. ## Basic usage The idea is to use be able to create modular applications and forward requests between them. class Blog < Kaffe::Base use Rack::CommonLogger get '/?' do "Hello From Blog" end end class Admin < Kaffe::Base get '/login' do ... Login logics ... end error 400..500 do |code, message| .. show pretty error message .. end end class MyApp < Kaffe::Base route '/blog', Blog route '/admin', Admin end run MyApp ## API overview