Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

angular2parse

tgftech273MIT1.0.11TypeScript support: included

Parse util for angular expressions: html string -> angular temaplte

readme

angular2parse

Parse util for angular expressions: html string -> angular temaplte

install

npm install angular2parse

// app.module.ts
@NgModule({
  imports: [Angular2ParseModule, ...],
  // ...
})
class AppModule {}

usage

import { Parse } from 'angular2parse';

@Injectable()
class MyService {
  constructor(private parser: Parse) {}

  parseAngularString() {
    const expression = `{
    positions: track.positions,
    cornerType: getCornerType(),
    material: track.color,
    width : 200000.0 }`;

   const expressionEvalFn = this.parser.eval(expression)

   const context = {
      getCornerType: () => 'value',
      track: {
          positions: [1,2,3],
          color: 'red',
        }
      }
   };

   const result = expressionEvalFn(context);
   console.log(result);
   // {positions: [1,2,3], cornerType: 'value', material: 'red', width: 2000}

}

`