angular-expressions
angular's nicest part extracted as a standalone module for the browser and node.
angular-expressions exposes a .compile()
-method which can be used to compile evaluable expressions:
var expressions = ; evaluate = expressions;; // returns 2
You can also set and get values on a given scope
:
evaluate = expressions;scope = name: "Jenny" ;; // returns 'Jenny' evaluate = expressions;; // won't throw an error because angular's expressions are forgivingconsole; // prints 'Störtebeker'
For assigning values, you can also use .assign()
:
evaluate = expressions;evaluate;console; // prints 'Störtebeker'
Check out their readme for further information.
Setup
Filters
Angular provides a mechanism to define filters on expressions:
expressionsfilters input; expr = expressions;; // returns 'ARR'
Arguments are evaluated against the scope:
expressionsfilters { input = input; if currency === "EUR" return input + "€"; else return input + "$"; }; expr = expressions;; // returns '1.23€'
API
exports
.compile(src): Function
Compiles src
and returns a function evaluate()
. The compiled function is cached under compile.cache[src]
to speed up further calls.
Compiles also export the AST.
Example output of: compile("tmp + 1").ast
{ type: 'Program',
body:
[ { type: 'ExpressionStatement',
expression:
{ type: 'Identifier',
name: 'tmp',
constant: false,
toWatch: [ [Circular] ] } } ],
constant: false }
NOTE angular $parse do not export ast variable it's done by this library.
.compile.cache = {}
A cache containing all compiled functions. The src is used as key. Set this on false
to disable the cache.
.filters = {}
An empty object where you may define your custom filters.
.Lexer
The internal Lexer.
.Parser
The internal Parser.
evaluate(scope?): *
Evaluates the compiled src
and returns the result of the expression. Property look-ups or assignments are executed on a given scope
.
evaluate.assign(scope, value): *
Tries to assign the given value
to the result of the compiled expression on the given scope
and returns the result of the assignment.
In the browser
There is no dist
build because it's not 2005 anymore. Use a module bundler like webpack or browserify. They're both capable of CommonJS and AMD.
Security
Comment from angular.js/src/ng/parse.js
:
Angular expressions are generally considered safe because these expressions only have direct access to $scope and locals. However, one can obtain the ability to execute arbitrary JS code by obtaining a reference to native JS functions such as the Function constructor.
As an example, consider the following Angular expression:
{}toStringconstructor
We want to prevent this type of access. For the sake of performance, during the lexing phase we disallow any "dotted" access to any member named "constructor".
For reflective calls (a[b]) we check that the value of the lookup is not the Function constructor while evaluating the expression, which is a stronger but more expensive test. Since reflective calls are expensive anyway, this is not such a big deal compared to static dereferencing. This sandboxing technique is not perfect and doesn't aim to be. The goal is to prevent exploits against the expression language, but not to prevent exploits that were enabled by exposing sensitive JavaScript or browser apis on Scope. Exposing such objects on a Scope is never a good practice and therefore we are not even trying to protect against interaction with an object explicitly exposed in this way.
A developer could foil the name check by aliasing the Function constructor under a different name on the scope.
In general, it is not possible to access a Window object from an angular expression unless a window or some DOM object that has a reference to window is published onto a Scope.
Authorship
Kudos go entirely to the great angular.js team, it's their implementation!
Contributing
Suggestions and bug-fixes are always appreciated. Don't hesitate to create an issue or pull-request. All contributed code should pass
- the tests in node.js by running
npm test
- the tests in all major browsers by running
npm run test-browser
and then visitinghttp://localhost:8080/bundle