All Projects → fb55 → Entities

fb55 / Entities

Licence: bsd-2-clause
Encode & decode HTML & XML entities with ease & speed

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Labels

Projects that are alternatives of or similar to Entities

ECSEntityBuilder
Unity ECS Entity Builder/Wrapper
Stars: ✭ 39 (-80.4%)
Mutual labels:  entities
Qodot Plugin
Quake .map support for Godot.
Stars: ✭ 368 (+84.92%)
Mutual labels:  entities
Framework
Open Source framework for writing data-centric applications over the latest technologies: .Net Core, C# 8 (not-nullable), ASP.NET Web API, Typescript 3.7 (strict), React, D3 and Sql Server or PostgreeSQL
Stars: ✭ 153 (-23.12%)
Mutual labels:  entities
glazejs
A high performance 2D game engine built in Typescript
Stars: ✭ 96 (-51.76%)
Mutual labels:  entities
Django Ledger
A bookkeeping & financial analysis engine for the Django Framework. UNDER ACTIVE DEVELOPMENT & NOT STABLE YET.
Stars: ✭ 253 (+27.14%)
Mutual labels:  entities
Laravel Bootstrap Table List
Bootstrap table list generator for Laravel.
Stars: ✭ 16 (-91.96%)
Mutual labels:  entities
Beef
Business Entity Execution Framework
Stars: ✭ 95 (-52.26%)
Mutual labels:  entities
Uecs
Ubpa Entity-Component-System (U ECS) in Unity3D-style
Stars: ✭ 174 (-12.56%)
Mutual labels:  entities
Entities
Character Entities for HTML, CSS (content) and Javascript.
Stars: ✭ 268 (+34.67%)
Mutual labels:  entities
Goworld
Scalable Distributed Game Server Engine with Hot Swapping in Golang
Stars: ✭ 2,007 (+908.54%)
Mutual labels:  entities
react-taggy
A simple zero-dependency React component for tagging user-defined entities within a block of text.
Stars: ✭ 29 (-85.43%)
Mutual labels:  entities
BurgerSpawners
Pocketmine Plugin implementing Stackable Spawners
Stars: ✭ 32 (-83.92%)
Mutual labels:  entities
Pachyderm
Virtual actors for elixir
Stars: ✭ 90 (-54.77%)
Mutual labels:  entities
Entity2Topic
[NAACL2018] Entity Commonsense Representation for Neural Abstractive Summarization
Stars: ✭ 20 (-89.95%)
Mutual labels:  entities
Entity2rec
entity2rec generates item recommendation using property-specific knowledge graph embeddings
Stars: ✭ 159 (-20.1%)
Mutual labels:  entities
TrackAssemblyTool
A Garry's mod tool for assembing a prop-segmented track
Stars: ✭ 17 (-91.46%)
Mutual labels:  entities
Unitymmo
an unity mmo demo, base on ecs(game play), xlua(ui)
Stars: ✭ 780 (+291.96%)
Mutual labels:  entities
Grano
A toolkit for mapping networks of political and economic influence through diverse types of entities and their relations. Accessible at http://granoproject.org
Stars: ✭ 181 (-9.05%)
Mutual labels:  entities
Relation Classification Using Bidirectional Lstm Tree
TensorFlow Implementation of the paper "End-to-End Relation Extraction using LSTMs on Sequences and Tree Structures" and "Classifying Relations via Long Short Term Memory Networks along Shortest Dependency Paths" for classifying relations
Stars: ✭ 167 (-16.08%)
Mutual labels:  entities
Fakerator
Random fake data generator with localization for Javascript in Node.js and browser
Stars: ✭ 91 (-54.27%)
Mutual labels:  entities

entities NPM version Downloads Build Status Coverage

Encode & decode HTML & XML entities with ease & speed.

How to…

…install entities

npm install entities

…use entities

const entities = require("entities");

//encoding
entities.escape("&"); // "&"
entities.encodeXML("&"); // "&"
entities.encodeHTML("&"); // "&"

//decoding
entities.decodeXML("asdf & ÿ ü '"); // "asdf & ÿ ü '"
entities.decodeHTML("asdf & ÿ ü '"); // "asdf & ÿ ü '"

Performance

This is how entities compares to other libraries on a very basic benchmark (see scripts/benchmark.ts, for 10,000,000 iterations):

Library decode performance encode performance Bundle size
entities 10.809s 17.683s npm bundle size
html-entities 14.029s 22.670s npm bundle size
he 16.163s 44.010s npm bundle size
parse-entities 28.507s N/A npm bundle size

License: BSD-2-Clause

Security contact information

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.

entities for enterprise

Available as part of the Tidelift Subscription

The maintainers of entities and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].