This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community. Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it. https://www.freifunk-altdorf.de
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Bernhard Blieninger fc05486403 initial commit taken from gitlab.lrz.de 6 years ago
..
event initial commit taken from gitlab.lrz.de 6 years ago
test initial commit taken from gitlab.lrz.de 6 years ago
.jshintrc initial commit taken from gitlab.lrz.de 6 years ago
.npmignore initial commit taken from gitlab.lrz.de 6 years ago
.testem.json initial commit taken from gitlab.lrz.de 6 years ago
.travis.yml initial commit taken from gitlab.lrz.de 6 years ago
CONTRIBUTION.md initial commit taken from gitlab.lrz.de 6 years ago
LICENCE initial commit taken from gitlab.lrz.de 6 years ago
README.md initial commit taken from gitlab.lrz.de 6 years ago
docs.mli initial commit taken from gitlab.lrz.de 6 years ago
document.js initial commit taken from gitlab.lrz.de 6 years ago
dom-comment.js initial commit taken from gitlab.lrz.de 6 years ago
dom-element.js initial commit taken from gitlab.lrz.de 6 years ago
dom-fragment.js initial commit taken from gitlab.lrz.de 6 years ago
dom-text.js initial commit taken from gitlab.lrz.de 6 years ago
event.js initial commit taken from gitlab.lrz.de 6 years ago
index.js initial commit taken from gitlab.lrz.de 6 years ago
package.json initial commit taken from gitlab.lrz.de 6 years ago
serialize.js initial commit taken from gitlab.lrz.de 6 years ago

README.md

min-document

build status dependency status

A minimal DOM implementation

Example

var document = require("min-document")

var div = document.createElement("div")
div.className = "foo bar"

var span = document.createElement("span")
div.appendChild(span)
span.textContent = "Hello!"

/*  <div class="foo bar">
        <span>Hello!</span>
    </div>
*/
var html = String(div)

Installation

npm install min-document

Contributors

  • Raynos

MIT Licenced