1.0.3 • Published 2 years ago

ng-template-urlify v1.0.3

Weekly downloads
-
License
Apache 2.0
Repository
github
Last release
2 years ago

Angular Template URLify

Replace all your component inline template properties with templateUrl and generate the respective HTML files automatically.

Before

// app.component.ts

@Component({
  selector: 'app-root',
  template: `
    <h1>Tour of Heroes</h1>
    <p>Lorem ipsum</p>
  `,
})
export class AppComponent {}

After

// app.component.ts

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
})
export class AppComponent {}
<!-- app.component.html -->

<h1>Tour of Heroes</h1>
<p>Lorem ipsum</p>

Usage

Firstly, make sure you are using some version control system like Git or you have a backup of your project. This will overwrite your existing TS files.

Once you've done that, run:

npx ng-template-urlify /path/to/your/files

or

npm install -g ng-template-urlify
ng-template-urlify /path/to/your/files

Rationale

Say you have a huge project with lots of components and have been using inline templates since the beginning. For any reason (performance on VSCode is one of them – HTML templates perform much better than inline ones), you want to change all your components to have separate HTML files instead of inline properties.

This will come in handy – with one command you can transform all your components to have separate HTML files. Otherwise you would have to do it manually.

License

Apache 2.0

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago