Coder Social home page Coder Social logo

pakertaja's Introduction

Pakertaja JavaScript library github-url coveralls npm

Pakertaja is a minimal JavaScript library for constructing DOM elements.

Example

import p from 'pakertaja';

function renderProduct(product) {
  return p.div(
    { class: 'product' },

    p.h1(product.title),

    p.p(product.description),

    p.form(
      p.label({ for: 'quantity' }, 'Quantity: '),
      p.input({ type: 'number', id: 'quantity', min: 10 }),
      p.button(
        'Add to cart',
        {
          type: 'submit',
          onclick: (ev) => {
            ev.preventDefault();
            alert(`Added ${document.getElementById('quantity').value} products into cart.`);
          },
        }
      )
    )
  );
}

p.append(document.body, renderProduct({
  title: 'Battlefield Earth DVDs',
  description: 'Critically acclaimed as one of the best movies ever made.',
}));

API

p( tagName[, ...args ] )

Constructs and returns HTML element of given tagName, such as div, h1 and so on. Optional arguments might consist from other HTML elements which will be inserted as child elements of the created parent element, text content or objects which contain HTML attributes for the created element.

Shortcuts for most HTML5 elements exist for this function, which allows to create HTML elements of certain type more conveniently. These shortcuts are: html, head, title, base, link, meta, style, script, noscript, body, section, nav, article, aside, h1, h2, h3, h4, h5, h6, header, footer, address, p, hr, br, pre, dialog, blockquote, ol, ul, li, dl, dt, dd, a, q, cite, em, strong, small, mark, dfn, abbr, time, progress, meter, code, var, samp, kbd, sub, sup, span, i, b, bdo, ruby, rt, rp, ins, del, figure, img, iframe, embed, object, param, video, audio, source, canvas, map, area, table, caption, colgroup, col, tbody, thead, tfoot, tr, td, th, form, fieldset, label, input, button, select, datalist, optgroup, option, textarea, output, details, command, bb, menu, legend and div.

Text nodes can also be created with an shortcut function called text.

p.append( root[, ...children ] )

Inserts given child elements to the end of given root element. Child elements might consist from other HTML elements, strings or function callbacks which return strings.

p.prepend( root[, ...children ] )

Inserts given child elements to the beginning of given root element. Child elements might consist from other HTML elements, strings or function callbacks which return strings.

p.escape( input )

Escapes HTML entities from given string input and returns result.

pakertaja's People

Contributors

dependabot[bot] avatar raulil avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.