rdesign/frontend/node_modules/decode-named-character-refe...
Jeff Emmett 80f1e96e6b Fix frontend build: type errors, SDK handling, docker context
- Use jq to cleanly remove encryptid SDK from package.json in Docker
- Fix TypeScript strict mode errors in dashboard and assistant
- Add .dockerignore to exclude node_modules from build context
- Use project root as Docker build context for frontend
- Fix Traefik routing: separate frontend/api/studio paths

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 02:21:52 +00:00
..
node_modules/character-entities Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
index.d.ts Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
index.d.ts.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
index.dom.d.ts Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
index.dom.d.ts.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
index.dom.js Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
index.js Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
license Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
package.json Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
readme.md Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00

readme.md

decode-named-character-reference

Build Status Coverage Status Downloads Size

Decode named character references.

Contents

What is this?

A workaround for webpack.

When should I use this?

Never use this. Use parse-entities. It uses this.

Install

This package is ESM only. In Node.js (version 14.14+, 16.0+), install with npm:

npm install decode-named-character-reference

In Deno with esm.sh:

import {decodeNamedCharacterReference} from 'https://esm.sh/decode-named-character-reference@1'

In browsers with esm.sh:

<script type="module">
  import {decodeNamedCharacterReference} from 'https://esm.sh/decode-named-character-reference@1?bundle'
</script>

Use

import {decodeNamedCharacterReference} from 'decode-named-character-reference'

decodeNamedCharacterReference('amp') //=> '&'

API

This package exports the identifier decodeNamedCharacterReference. There is no default export.

decodeNamedCharacterReference(value)

Again, use parse-entities.

Types

This package is fully typed with TypeScript. It exports no additional types.

Compatibility

This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 14.14+ and 16.0+. It also works in Deno and modern browsers.

Security

This package is safe.

Contribute

Yes please! See How to Contribute to Open Source.

License

MIT © Titus Wormer