Get and validate the raw body of a readable stream.
Get raw git commits out of your repository using git-log(1).
hast utility to reparse a tree
rehype plugin to reparse the tree (and raw nodes)
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports PostgreSQL and SQLite databases.
Lightweight, beautiful and user-friendly prompts
The most comprehensive authentication framework for TypeScript.
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
A loader for webpack that allows importing files as a String
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
AG Grid React Component
Hooks for managing, caching and syncing asynchronous and remote data in React
Resizable component for React.
The fastest directory crawler & globbing alternative to glob, fast-glob, & tiny-glob. Crawls 1m files in < 1s
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
<div align="center"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://github.com/ag-grid/ag-grid/blob/latest/documentation/ag-grid-docs/public/images/ag-logos/svg-logos/AG-Charts-Logo_Dark-Theme.svg?raw=true"/> <sourc
Interactive react component for displaying javascript arrays and JSON objects.
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
Data-Mapper ORM for TypeScript and ES2023+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
The modular and type safe schema library for validating structural data
Media Type Database
No description provided.
AG Grid React Component
Get raw data from ActiveRecord
Wraps the Phone Your Rep API up with an idiomatic Ruby bow. Easily construct requests with block syntax and receive a response with http status, headers, raw body, and ActiveRecord-esque objects that make data-querying easy (using the lazy_record gem).
= sql_valued_columns SqlValuedColumns is an ActiveRecord plugin that will let you have specific SQL statements executed on INSERT / UPDATE. It will call the SQL function you provide, passing the arguments specified in the call to sql_column. See the documentation for SqlValuedColumns::ClassMethods#sql_column for more information regarding usage, including passing Strings and Proc objects as arguments to your SQL function. Example: You have a model with two columns, one named "another_column" and the other named "size_of_another_column". Whenever you insert data into "another_column", you want to have size_of_another_column have the result of the SQL function LENGTH inserted into it. class MyModel < ActiveRecord::Base sql_column :size_of_another_column, "LENGTH", :another_column end Example 2: You have a model with three columns, position, latitude and longitude. Latitude and longitude are values expressed as angles, and position is a special datatype for your database that represents the X/Y/Z projection of that particular latitude and longitude (example: http://www.postgresql.org/docs/8.3/static/earthdistance.html ) When you insert data with latitude and longitude, you want to automatically call a function in your database to transform the latitude and longitude into the appropriate represenation. class MyModel < ActiveRecord::Base sql_column :position, "ll_to_earth", :latitude, :longitude end Example 3: You are an insane criminal who has somehow learned SQL. You would like to make anyone who runs your code to suffer database punishing queries and odd security and data formatting issues that will make them rue the day they ever learned of computers. class MyModel < ActiveRecord::Base sql_column :a_column, "(SELECT count(id) FROM large_list_of_things)", :raw => true sql_column :another_column, '(SELECT count(other_id) FROM other_large_list_of_things WHERE some_column = \'#{some_model_method}\')', :raw => true end == Notes No tests yet, am lazy. == Copyright Copyright (c) 2009 Chris Zelenak. See LICENSE for details.