All Projects → redom → Nodom

redom / Nodom

Licence: isc
fake DOM for RE:DOM

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Nodom

Elemental2
Type checked access to browser APIs for Java code.
Stars: ✭ 115 (-13.53%)
Mutual labels:  dom
Dom7
Minimalistic JavaScript library for DOM manipulation, with a jQuery-compatible API
Stars: ✭ 119 (-10.53%)
Mutual labels:  dom
Fake Mailer
Send Mail Anonymously with this Script
Stars: ✭ 126 (-5.26%)
Mutual labels:  fake
Fakery
👽 Swift fake data generator
Stars: ✭ 1,572 (+1081.95%)
Mutual labels:  fake
Fakedata
Haskell Library for producing quality fake data
Stars: ✭ 118 (-11.28%)
Mutual labels:  fake
Femtojs
femtoJS - Really small JavaScript (ES6) library for DOM manipulation.
Stars: ✭ 122 (-8.27%)
Mutual labels:  dom
Calendarhtml Javascript
Simple Calendar built with Pure JavaScript (No Libraries) http://iamnitinpatel.com/projects/calendar/
Stars: ✭ 113 (-15.04%)
Mutual labels:  dom
Holmes
Fast and easy searching inside a page
Stars: ✭ 1,679 (+1162.41%)
Mutual labels:  dom
Binding.scala
Reactive data-binding for Scala
Stars: ✭ 1,539 (+1057.14%)
Mutual labels:  dom
Learnvue
Vue.js 源码解析
Stars: ✭ 11,516 (+8558.65%)
Mutual labels:  dom
Marko
A declarative, HTML-based language that makes building web apps fun
Stars: ✭ 10,796 (+8017.29%)
Mutual labels:  dom
Jsx Dom
Use JSX to create DOM elements.
Stars: ✭ 117 (-12.03%)
Mutual labels:  dom
Micro Jaymock
Tiny API mocking microservice for generating fake JSON data.
Stars: ✭ 123 (-7.52%)
Mutual labels:  fake
Creak
Poison, reset, spoof, redirect MITM script
Stars: ✭ 116 (-12.78%)
Mutual labels:  fake
Tempy
Python Object Oriented Html Templating System
Stars: ✭ 126 (-5.26%)
Mutual labels:  dom
Dna.js
🧬 An uncomplicated user interface library for building data-driven semantic templates
Stars: ✭ 114 (-14.29%)
Mutual labels:  dom
Test State
Scala Test-State.
Stars: ✭ 119 (-10.53%)
Mutual labels:  dom
Chai Webdriver
Build more expressive integration tests with webdriver sugar for chai.js
Stars: ✭ 128 (-3.76%)
Mutual labels:  dom
Faker
Faker is a Crystal library that generates fake data for you
Stars: ✭ 126 (-5.26%)
Mutual labels:  fake
Dom I18n
Provides a very basic HTML multilingual support using JavaScript
Stars: ✭ 125 (-6.02%)
Mutual labels:  dom

Build status js-semistandard-style

NO:DOM

fake DOM for RE:DOM

installing

npm install nodom

usage

const { Document, SVGElement } = require('nodom');
global.document = new Document();
global.SVGElement = SVGElement;
const { el, mount } = require('redom');

mount(document.body, el('h1', 'Hello world!'));

console.log(document.body.outerHTML); // <body><h1>Hello world!</h1></body>
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].