ngDoInit() { this.convertText(); }

// example.component.ts import { Component } from '@angular/core'; import { TextToHtmlService } from './text-to-html.service';

// text-to-html.service.ts import { Injectable } from '@angular/core';

} Then use it in a component:

constructor(private textToHtmlService: TextToHtmlService) { }