An open API service indexing awesome lists of open source software.

https://github.com/dergoogler/doctools

Use simple codes...
https://github.com/dergoogler/doctools

Last synced: 4 months ago
JSON representation

Use simple codes...

Awesome Lists containing this project

README

          

# DocTools
Simple Codes

## Setup
Add this

```ts
// Imports
import $Document from './lib/Document';
import $Console from './lib/Console';

// Create
const doc = new $Document();
const con = new $Console();
```

# Enjoy

```ts
// console.log('CONSOLE');
con.log('CONSOLE');
```
----

```ts
// document.getElementById('demo').innerHTML = 'Hello';
doc.html('demo', 'Hello');
```