Skip to content

Commit

Permalink
Rename the fork
Browse files Browse the repository at this point in the history
  • Loading branch information
flaki committed Mar 8, 2024
1 parent 0794fa0 commit cebeac4
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 13 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# FauxDOM
# FauxDOM with Canvas

![Build Status](https://github.com/sedouri/fauxdom/workflows/build/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/sedouri/fauxdom/badge.svg?branch=master)](https://coveralls.io/github/sedouri/fauxdom?branch=master)
A fast and lightweight JavaScript library for parsing, modifying, and outputting HTML using a (mostly) standard DOM API. Originally created by [sedouri](https://github.com/sedouri/fauxdom), this fork adds additional features and aims to be used on the server side, primarily in Node.js.

A fast and lightweight JavaScript library for parsing, modifying, and outputting HTML using a (mostly) standard DOM API, either on the server in Node.js or in any reasonably modern browser.
Newly added features include:

- Expanded support for the HTML `<canvas>` element and a subset of the `HTMLCanvasContext2D` API implemented in pure JavaScript
- The `style` attributed and the DOM `style` property accessors
- Support for other APIs: `EventTarget`, `classList`

The HTML & DOM features have been largely left intact, their original description to follow:

## Description

Expand Down
24 changes: 14 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
{
"name": "fauxdom",
"description": "A fast and lightweight HTML5 parser and DOM for Node.js and browsers.",
"version": "1.1.1",
"author": "Joe Stenger <[email protected]>",
"name": "fauxdom-with-canvas",
"description": "A fast and lightweight HTML5 parser and DOM with built-in canvas",
"version": "0.1.0",
"author": "Flaki <[email protected]>",
"contributors": [
"Joe Stenger <[email protected]>",
"Flaki <[email protected]>"
],
"license": "MIT",
"keywords": [
"dom",
"html",
"parser",
"selector",
"serializer",
"html5"
"html5",
"canvas"
],
"repository": {
"type": "git",
"url": "https://github.com/sedouri/fauxdom.git"
"url": "https://github.com/radiopaedia/fauxdom-with-canvas.git"
},
"bugs": {
"url": "https://github.com/sedouri/fauxdom/issues"
"url": "https://github.com/radiopaedia/fauxdom-with-canvas/issues"
},
"homepage": "https://github.com/sedouri/fauxdom",
"homepage": "https://github.com/radiopaedia/fauxdom-with-canvas",
"files": [
"lib/fauxdom.cjs",
"lib/fauxdom.mjs",
Expand All @@ -30,7 +34,7 @@
"lib": "lib/"
},
"engines": {
"node": ">=6"
"node": ">=20"
},
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit cebeac4

Please sign in to comment.