A tiny script for capturing unhandled errors and rejections from the very beginning of web app load
A simple cache for a few of the JS Error constructors.
Create HTTP error objects
Sentry SDK integration for user feedback
Rich errors
Official Sentry SDK for Electron
JSON.parse with context information on error
JSON Schema validation and specifications
Call a callback when a readable/writable/duplex stream has completed or failed.
TypeScript definitions for http-errors
Function argument validation for humans
JSON.parse with context information on error
Human-friendly JSON Schema validation for APIs
Create an error from multiple errors
Custom error messages in JSON Schemas for Ajv validator
richer JavaScript errors
A codemod that suppresses existing violations of eslint rules.
A drop-in replacement for fs, making various improvements.
Easy as cake e-mail sending from your Node.js applications
Ethereum RPC and Provider errors
Transport classes and utilities shared among Node.js Elastic client libraries
🛵 The stylish Node.js middleware engine for AWS Lambda
Error classes for @changesets
Extract meaning from JS Errors
Help you discover errors early.
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/).
No description provided.
No description provided.
No description provided.
No description provided.