New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

wdjs

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wdjs

writing html will be more fun!

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

Writedown↓

MIT License GitHub tag (latest by date) npm npm bundle size

Writing html will be more fun!

kaf.js

View actual sample

View on GitHub

View on npmjs.com

Example

<body #root>
  <header>
    <a .header-logo>Writedown</a>
  </header>
  <div .message.green>
    This is example of
    <span #wd>writedown</span>!
  </div>
  <button .button #ok>
    OK
  </button>
</body>

<body id="root">
  <header>
    <a class="header-logo">Writedown</a>
  </header>
  <div class="message green">
    This is example of
    <span id="wd">writedown</span>!
  </div>
  <button class="button" id="ok">
    OK
  </button>
</body>

Usage

There are two ways to initialize Writedown.

<script src="https://cdn.jsdelivr.net/gh/mtsgi/writedown@master/writedown.js"></script>

or

<script type="module">
  import * as wd from "../wd.js";
  wd.init('.wd');
  // You can init Writedown for the specific element in this way
  // This also works: wd.init(document.querySelector('.wd'))
</script>

Keywords

html

FAQs

Package last updated on 28 Jun 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts