ngx-codetab
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

NGX-codetab

This is a codetab module and components for Angular projects. Live Demo Here

Badges

Build npm License PRs Welcome

Installing / Getting started

To get started using the library install from npm

npm i ngx-codetab --save

This will give you access to the module and components available in the library.

Add module to you NgModule

After installing the library to get access to the features you need to add it to your AppModule.

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { NgxCodeTabModule } from 'ngx-codetab';

@NgModule({
   imports: [BrowserModule, NgxCodeTabModule],
   declarations: [AppComponent],
})
export class AppModule {}

The inside of you app.component.html you can use the component like so:

<ngx-codetab [language]="html" [content]="<p>Hello World</p>"></ngx-codetab>

If you would like a collection of tabs together simple wrap them in the collection component

<ngx-codetab-collection>
    <ngx-codetab [language]="html" [content]="<p>Hello World</p>"></ngx-codetab>
    <ngx-codetab [language]="js" [content]="console.log('loading...');"></ngx-codetab>
    <ngx-codetab [language]="css" [content]="p { color: blue; }"></ngx-codetab>
</ngx-codetab-collection>

For more information on using this component go to the Documentation and Demo site

Want to Contribute?

Go check out our Contributing Document for more information on getting setup.

Dependencies (8)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i ngx-codetab

    Weekly Downloads

    2

    Version

    1.0.1

    License

    The Unlicense

    Unpacked Size

    321 kB

    Total Files

    36

    Last publish

    Collaborators

    • jr33d