https://github.com/dergoogler/doctools
Use simple codes...
https://github.com/dergoogler/doctools
Last synced: 4 months ago
JSON representation
Use simple codes...
- Host: GitHub
- URL: https://github.com/dergoogler/doctools
- Owner: DerGoogler
- License: gpl-3.0
- Created: 2021-02-18T15:56:07.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-19T20:16:16.000Z (over 5 years ago)
- Last Synced: 2025-02-23T01:13:56.531Z (over 1 year ago)
- Language: HTML
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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');
```