Entity API for Node.JS.
TypeScript API client for S-Corp Biz Entity API
JavaScript client library for the epilot Core Entity API
Sierra Labs Entity API Library
Star Tenon entity api and utils
Elasticsearch storage backend for Entity API.
types for entity api proxy manager
Zod schemas and inferred TypeScript types for every Strimz platform entity, API input, and webhook event.
Wrapper utilities for CRUD operations with REST APIs entities using RTK Query
MCP Server for Pounce v2 Entity API - Connect AI agents to 65M+ verified B2B companies
An arbitrary-precision Decimal type for JavaScript.
The Node.js `util.deprecate()` function with browser support
Entity parser for XML, HTML, External entites with security and NCR control
Test whether an object looks like a promises-a+ promise
NPM module for storing persistent data
Create simple HTTP ETags
TypeScript SDK for the Pounce v2 Entity API — search, look up, and enrich 65M+ verified B2B companies.
An evented streaming XML parser in JavaScript
A Backstage plugin that helps represent API entities in the frontend
Broccoli Plugin API Types
entity tag module
A robust & optimized `String.prototype.repeat` polyfill, based on the ECMAScript 6 specification.
Get the command from a shebang
The Backstage plugin that renders technical documentation for your components
The Thanos gem allows you to consume the API provided by the Marvel development team, querying on various aspects of the entire Marvel universe.
Just as Galactus consumes planets in the comics, the galactus gem allows you to consume the API provided by the Marvel development team, querying on various aspects of the entire Marvel universe.
A Battle.net API adapter and entity mapper.
Use the Yahoo! Content Analysis API to extract topics and entities.
Describe your data entity using JSON and have naptime generate your RESTFul API endpoints
Simple schema less rest API that can be run in docker and have entities configured through a simple list of environment variables. It follows convention over configuration to allow you to get a REST api that stores unstructured data fast.
== Description ["Kiwi is a versatile entity component system focussing on fast iteration and a nice api.\n", "\n", "To get started, read the [usage guide](#usage) below.\n", "\n", "[](https://github.com/Jomy10/kiwi-ecs-ruby/actions/workflows/tests.yml)\n", "\n", "## Installation\n", "\n", "The library is available from [ruby gems](https://rubygems.org/gems/kiwi-ecs):\n", "\n", "```sh\n", "gem install kiwi-ecs\n", "```\n", "\n", "To use it in your ruby source files:\n", "\n", "```ruby\n", "require 'kiwi-ecs'\n", "```\n", "\n", "## Usage\n", "\n", "### The world\n", "\n", "The world is the main object that controls the ecs.\n", "\n", "```ruby\n", "world = Kiwi::World.new\n", "```\n", "\n", "### Components\n", "\n", "Creating a component is as simple as declaring a struct:\n", "\n", "```ruby\n", "Position = Struct.new :x, :y\n", "```\n", "\n", "Classes can also be used instead of structs\n", "\n", "```ruby\n", "class Velocity\n", " attr_accessor :x\n", " attr_accessor :y\n", "end\n", "```\n", "\n", "### Entities\n", "\n", "An entity is spawned with a set of components:\n", "\n", "```ruby\n", "entityId = world.spawn(Position.new(10, 10))\n", "\n", "world.spawn(Position.new(3, 5), Velocity.new(1.5, 0.0))\n", "```\n", "\n", "The `world.spawn(*components)` function will return the id of the spawned entity.\n", "\n", "Killing an entity can be done using `world.kill(entityId)`:\n", "\n", "```ruby\n", "world.kill(entityId)\n", "```\n", "\n", "### Systems\n", "\n", "#### Queries\n", "\n", "Queries can be constructed as follows:\n", "\n", "```ruby\n", "# Query all position componentss\n", "world.query(Position) do |pos|\n", " puts pos\n", "end\n", "\n", "# Query all entities having a position and a velocity component, and their entity ids\n", "world.query_with_ids(Position, Velocity) do |id, pos, vel|\n", " # ...\n", "end\n", "```\n", "\n", "### Flags\n", "\n", "Entities can be tagged using flags\n", "\n", "#### Defining flags\n", "\n", "A flag is an integer\n", "\n", "```ruby\n", "module Flags\n", " Player = 0\n", " Enemy = 1\n", "end\n", "```\n", "\n", "#### Setting flags\n", "\n", "```ruby\n", "id = world.spawn\n", "\n", "world.set_flag(id, Flags::Player)\n", "```\n", "\n", "#### Removing a flag\n", "\n", "```ruby\n", "world.remove_flag(id, Flags::Player)\n", "```\n", "\n", "#### Checking wether an entity has a flag\n", "\n", "```ruby\n", "world.has_flag(id, Flags::Player)\n", "```\n", "\n", "#### Filtering queries with flags\n", "\n", "```ruby\n", "world.query_with_ids(Pos)\n", " .filter do |id, pos|\n", " world.has_flag(id, Flags::Player)\n", " end\n", " .each do |id, pos|\n", " # Do something with the filtered query\n", " end\n", "```\n", "\n", "The `hasFlags` function is also available for when you want to check multiple flags.\n", "\n", "## Road map\n", "\n", "- [ ] System groups\n", "\n", "## Contributing\n", "\n", "Contributors are welcome to open an issue requesting new features or fixes or opening a pull request for them.\n", "\n", "## License\n", "\n", "The library is licensed under LGPLv3.\n"]
Vcloud-walker is a command line tool to describe different vCloud entities. This tool is a thin layer around fog api, which exposes summarized vCloud entities in the form of JSON
A gem that turns the CO Business Entity API into ruby methods.
Ruby Gem for Dandelion API service. Available endpoint: Entity Extraction, Text Similarity and Language Detection
Генерация контроллеров API и модулей с параметрами Grape и Grape Entity
An interface to the datasciencetoolkit.org open API for geocoding addresses, extracting entities and sentiment from unstructured text, and other common semantic and geo data tasks.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.