Socket
Socket
Sign inDemoInstall

angular1-template-loader

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular1-template-loader

Backport of the Angulars webpack loader that inlines your angular templates into angular components.


Version published
Weekly downloads
17
increased by88.89%
Maintainers
1
Weekly downloads
 
Created
Source

angular1-template-loader

Chain-to loader for webpack that inlines all html in angular 1 components.

This is a backport of the angular2-template-loader

Installation

Install the webpack loader from npm.

  • npm install angular1-template-loader --save-dev

Chain the angular1-template-loader to your currently used typescript loader.

loaders: ['awesome-typescript-loader', 'angular1-template-loader'],

Requirements

To be able to use the template loader you must have a loader registered, which can handle .html files.

The most recommended loader is ngtemplate-loader

In some cases the webpack compilation will fail due to unknown require statements in the source.
This is caused by the way the template loader works.

The Typescript transpiler doesn't have any typings for the require method, which was generated by the loader.

We recommend the installation of type defintions, which contain a declaration of the require method.

Example Markup

Here is an example markup of the webpack.config.js, which chains the angular1-template-loader to the tsloader

module: {
  rules: [
    {
      test: /\.ts$/,
      loaders: ['awesome-typescript-loader', 'angular1-template-loader'],
      exclude: [/\.(spec|e2e)\.ts$/]
    },
    { 
      test: /\.html$/, 
      loaders: ['ngtemplate?relativeTo=/src/', 'html']
    }
  ]
}

Awesome Typescript Loader

When using awesome-typescript-loader to load your typescript files you have to set the useWebpackText property to true. Otherwise the angular1-template-loader is not able to chain into it.

Here is an example markup (tsconfig.json)

{
  "compilerOptions": {
    ...
  },
  "awesomeTypescriptLoaderOptions": {
    ...
    "useWebpackText": true // Allows other loaders to be chained to awesome-typescript-loader.
  },
}

How does it work

The angular1-template-loader searches for templateUrl declarations inside of the Angular 1 Component metadata and replaces the paths with the corresponding require statement.

The generated require statements will be handled by the given loader for .html and .js files.

Keywords

FAQs

Package last updated on 23 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc