Creates a nodejs app with postgres and express-promise-router.
Easily exclude node_modules in Webpack bundle
i18next-fs-backend is a backend layer for i18next using in Node.js and for Deno to load translations from the filesystem.
The plugin-events-node module for @backstage/plugin-events-backend
A debug logger package for other Google libraries
Node server-side implementation of Flmngr file manager
CLI to scaffold a Node.js + TypeScript backend with Express, MongoDB, Mongoose, and full CRUD modules.
The Dropbox JavaScript SDK is a lightweight, promise based interface to the Dropbox v2 API that works in both nodejs and browser environments.
The Firebase Authenticaton component of the Firebase JS SDK.
i18next-http-backend is a backend layer for i18next using in Node.js, in the browser and for Deno.
Common permission and authorization utilities for backend plugins
An open-source machine learning framework.
Statsig Node.js SDK for usage in multi-user server environments.
Clerk Backend SDK - REST Client for Backend API & JWT verification utilities
No description provided.
A library for Backstage backend plugins that want to interact with the search backend plugin
This package helps to transform resources to an i18next backend
The Backstage backend plugin that helps you create new things
The Backstage backend plugin that renders technical documentation for your components
No description provided.
Common node.js functionalities for TechDocs, to be shared between techdocs-backend plugin and techdocs-cli
The Backstage backend plugin that provides the Backstage catalog
Node.js library for the signals plugin
A slimmed version of the Statsig Node.js SDK.
This gem will install as a daemon and can be used to connect to a graphite and a carbon backend. It will not only post the data for the metrics but also create graphs into graphite, by means of a translation from munin-node.
This is the start of a Puppet provisioning system. It provides a graphical web service, a JSON rest API and command line interface that will manage Hiera YAML files and a few functions to read them and apply classes and parameters to a node. It works like a lightweight External Node Classifier. It also provides provisioning functionality to spin up new instances after classifying them. It currently has a backend for Cloud Provisioner and will shortly have a VMWare plugin to spin up new instances for Razor to provision. New backend plugins are quite easy to create. Documentation forthcoming.
GQLite is a Rust-language library, with a C interface, that implements a small, fast, self-contained, high-reliability, full-featured, Graph Query database engine. GQLite support multiple database backends, such as SQLite and redb. This enable to achieve high performance and for application to combine Graph queries with traditional SQL queries. GQLite source code is license under the [MIT License](LICENSE) and is free to everyone to use for any purpose. The official repositories contains bindings/APIs for C, C++, Python, Ruby and Crystal. The library is still in its early stage, but it is now fully functional. Development effort has now slowed down and new features are added on a by-need basis. It supports a subset of OpenCypher, with some ISO GQL extensions. Example of use -------------- ```ruby require 'gqlite' begin # Create a database on the file "test.db" connection = GQLite::Connection.new filename: "test.db" # Execute a simple query to create a node and return all the nodes value = connection.execute_oc_query("CREATE () MATCH (n) RETURN n") # Print the result if value.nil? puts "Empty results" else puts "Results are #{value.to_s}" end rescue GQLite::Error => ex # Report any error puts "An error has occured: #{ex.message}" end ``` The documentation for the GQL query language can found in [OpenCypher](https://auksys.org/documentation/5/libraries/gqlite/opencypher/) and for the [API](https://auksys.org/documentation/5/libraries/gqlite/api/).