Ngx-Bootstrap - Configuração do ambiente
Neste capítulo, você aprenderá em detalhes sobre como configurar o ambiente de trabalho do ngx-bootstrap em seu computador local. Como o ngx-bootstrap é principalmente para projetos angulares, certifique-se de terNode.js e npm e angular instalado em seu sistema.
Crie um projeto angular
Primeiro crie um projeto angular para testar os componentes do ngx-bootstrap usando os seguintes comandos.
ng new ngxbootstrap
Ele criará um projeto angular chamado ngxbootstrap.
Adicionar ngx-bootstrap como dependência
Você pode usar o seguinte comando para instalar o ngx-bootstrap em um projeto recém-criado -
npm install ngx-bootstrap
Você pode observar a seguinte saída assim que o ngx-bootstrap for instalado com sucesso -
+ [email protected]
added 1 package from 1 contributor and audited 1454 packages in 16.743s
Agora, para testar se o bootstrap funciona bem com Node.js, crie o componente de teste usando o seguinte comando -
ng g component test
CREATE src/app/test/test.component.html (19 bytes)
CREATE src/app/test/test.component.spec.ts (614 bytes)
CREATE src/app/test/test.component.ts (267 bytes)
CREATE src/app/test/test.component.css (0 bytes)
UPDATE src/app/app.module.ts (388 bytes)
Limpe o conteúdo de app.component.html e atualize-o a seguir.
app.component.html
<app-test></app-test>
Atualize o conteúdo de app.module.ts para incluir o módulo de acordeão ngx-bootstrap. Adicionaremos outro módulo nos capítulos subsequentes. Atualize o seguinte conteúdo.
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { TestComponent } from './test/test.component';
import { AccordionModule } from 'ngx-bootstrap/accordion'
@NgModule({
declarations: [
AppComponent,
TestComponent
],
imports: [
BrowserAnimationsModule,
BrowserModule,
AccordionModule.forRoot()
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Atualize o conteúdo de index.html para incluir bootstrap.css. Atualize o seguinte conteúdo.
index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ngxbootstrap</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<app-root></app-root>
</body>
</html>
No próximo capítulo, vamos atualizar o componente de teste para usar componentes ngx-bootstrap.