Real time error notifications. Sends push notification to your mobile phone upon a server error (or for any reason you choose). Supports aws sqs queue or pushover notifications.
node-error-reporter
Zero config Mochawesome reporter for Cypress with screenshots
Spec reporter for jasmine behavior-driven development framework
Jest test results processor for generating a summary in HTML
A JUnit reporter for mocha.
JSON reporter for CSpell
takes json-cov output into stdin and POSTs to coveralls.io
A WebdriverIO utility to help reporting all events
Generates gorgeous HTML reports from mochawesome reporter.
A tool for reporting your application’s builds to Bugsnag
A node:test reporter
A Karma plugin. Report all spec-results to console (like mocha's spec reporter).
A Karma plugin. Dynamically displays tests results at debug.html page
Log PostCSS messages in the console
Generates Cucumber HTML reports in three different themes
vfile utility to create a report for a file
LCOV reporter for Mocha
A WebdriverIO plugin to report in spec style
Pretty test output reporters for tap
A WebdriverIO reporter plugin to create Allure Test Reports
Reporter for Jest that outputs GitHub Actions annotations
[](http://badge.fury.io/js/jasmine-growl-reporter) [](https://gemnasium.com/AlphaHydrae/jasmine-growl-repo
A WebdriverIO plugin to report in dot style
Pampa is a Ruby library for async & distributing computing providing the following features: - cluster-management with dynamic reconfiguration (joining and leaving nodes); - distribution of the computation jobs to the (active) nodes; - error handling, job-retry and fault tolerance; - fast (non-direct) communication to ensure realtime capabilities. The Pampa framework may be widely used for: - large scale web scraping with what we call a "bot-farm"; - payments processing for large-scale ecommerce websites; - reports generation for high demanded SaaS platforms; - heavy mathematical model computing; and any other tasks that requires a virtually infinite amount of CPU computing and memory resources. Find documentation here: https://github.com/leandrosardi/pampa
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/).
Contentful API wrapper library exposing an ActiveRecord-like interface