@initial.dev/initial-terminal
v0.0.22
Published
Fabulous Terminal for Webmakers
Downloads
3
Readme
Initial
Fabulous Terminal for Webmakers
Getting Started
...
npm install initialjs
...
<!-- Html -->
<initial-terminal size="big" theme="solarized" opened="true" key="Insert"></initial-terminal>
// Javascript
document.querySelector('initial-terminal').open();
Need help? Check out our docs here.
Using this component
Script tag
- Publish to NPM
- Put a script tag similar to this
<script src='https://unpkg.com/[email protected]/dist/mycomponent.js'></script>
in the head of your index.html - Then you can use the element anywhere in your template, JSX, html etc
Node Modules
- Run
npm install initialjs --save
- Put a script tag similar to this
<script src='node_modules/initialjs/dist/initialjs.js'></script>
in the head of your index.html - Then you can use the element anywhere in your template, JSX, html etc
In a stencil-starter app
- Run
npm install initialjs --save
- Add an import to the npm packages
import initialjs;
- Then you can use the element anywhere in your template, JSX, html etc