Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
can-stache-bindings
Advanced tools
Default binding syntaxes for can-stache.
{(child-prop)}="key"
Two-way binds childProp
in the [can-component::viewModel viewModel] to
[can-stache.key] in the parent [can-view-scope scope]. If childProp
is updated key
will be updated
and vice-versa.
<my-component {(some-prop)}="value"/>
When setting up the binding:
childProp
is undefined
, key
will be set to childProp
.key
is undefined
, childProp
will be set to key
.childProp
and key
are defined, key
will be set to childProp
.child-prop {String}
:
The name of the property of the viewModel to two-way bind.
key {can-stache/expressions/literal|can-stache/expressions/key-lookup|can-stache/expressions/call|can-stache/expressions/helper}
:
A call expression whose value will be used to two-way bind in the parent scope.
{($child-prop)}="key"
Two-way binds the element's childProp
property or attribute to
[can-stache.key] in the parent [can-view-scope scope]. If childProp
is updated key
will be updated
and vice-versa.
<input {($value)}="name"/>
child-prop {String}
:
The name of the element's property or attribute to two-way bind.
key {can-stache/expressions/literal|can-stache/expressions/key-lookup|can-stache/expressions/call|can-stache/expressions/helper}
:
A call expression whose value will be used to two-way bind in the parent scope.
{child-prop}="key"
Imports [can-stache.key] in the [can-view-scope scope] to childProp
in [can-component::viewModel viewModel]. It also updates childProp
with the value of key
when key
changes.
<my-component {some-prop}="value"/>
child-prop {String}
:
The name of the property to set in the
component's viewmodel.
key {can-stache/expressions/literal|can-stache/expressions/key-lookup|can-stache/expressions/call|can-stache/expressions/helper}
:
An expression whose resulting value is used to set as childProp
.
{$child-prop}="key"
Imports [can-stache.key] in the [can-view-scope scope] to childProp
property or attribute on the element.
<input {$value}="name"/>
This signature works, but the following should be used instead:
<input value="{{name}}"/>
{^child-prop}="key"
Exports childProp
in the [can-component::viewModel viewModel] to [can-stache.key] in the parent [can-view-scope scope]. It also updates
key
with the value of childProp
when childProp
changes.
<my-component {^some-prop}="value"/>
child-prop {String}
:
The name of the property to export from the
child components viewmodel. Use {^this}
or {^.}
to export the entire viewModel.
key {can-stache/expressions/literal|can-stache/expressions/key-lookup|can-stache/expressions/call|can-stache/expressions/helper}
:
An expression that will be used to set in the parent scope.
{^$child-prop}="key"
Exports the element's childProp
property or attribute to [can-stache.key] in the parent [can-view-scope scope]. It also updates
key
with the value of childProp
when childProp
changes.
<input {^$value}="name"/>
child-prop {String}
:
The name of the element's property or attribute to export.
key {can-stache/expressions/literal|can-stache/expressions/key-lookup|can-stache/expressions/call|can-stache/expressions/helper}
:
An expression whose resulting value with be used to set in the parent scope.
($DOM_EVENT)='CALL_EXPRESSION'
Listens to an event on the element and calls the [can-stache/expressions/call] when that event occurs.
<div ($click)="doSomething()"/>
DOM_EVENT {String}
:
A DOM event name like "click".
CALL_EXPRESSION {can-stache/expressions/call}
:
A call expression like method(key)
that is called when the DOM_EVENT
is fired. The following key values are also supported:
%element
- The element the event happened upon.$element
- The element the event happened upon.%event
- The event object.%viewModel
- If the element is a [can-component], the component's [can-component::viewModel viewModel].%context
- The current context.%scope
- The current [can-view-scope scope].(VIEW_MODEL_EVENT)='CALL_EXPRESSION'
Listens to an event on the element's [can-component::viewModel viewModel] and calls the [can-stache/expressions/call] when that event occurs.
<my-component (show)="doSomething()"/>
DOM_EVENT {String}
:
A DOM event name like "click". jQuery custom events can also
be given.
CALL_EXPRESSION {can-stache.expressions}
:
A call expression like method(key)
that is called when the DOM_EVENT
is fired. The following key values are also supported:
%element
- The element the event happened upon.
$element
- The [can.$] wrapped element the event happened upon.
%event
- The event object.
%viewModel
- If the element is a [can-component], the component's [can-component::viewModel viewModel].
%context
- The current context.
%scope
- The current [can-view-scope].
*ref-prop
A shorthand for exporting an element's viewModel to the reference scope.
{String}
:
The name of the property to set in the template's 'references' scope.boolean-to-inList(item, list)
When the getter is called, returns true if item is within the list, determined using .indexOf
.
When the setter is called, if the new value is truthy then the item will be added to the list using .push
; if it is falsey the item will removed from the list using .splice
.
<input type="checkbox" {($value)}="boolean-to-inList(item, list)" />
{*}
:
The item to which to check{can-define/list/list|can-list|Array}
:
The list{can-compute}
:
A compute that will be used by undefined as a getter/setter when the element's value changes.string-to-any(~item)
When the getter is called, gets the value of the compute and calls .toString()
on that value.
When the setter is called, takes the new value and converts it to the primitive value using [can-util/js/string-to-any/string-to-any] and sets the compute using that converted value.
<select {($value)}="string-to-any(~favePlayer)">
<option value="23">Michael Jordan</option>
<option value="32">Magic Johnson</option>
</select>
{can-compute}
:
A compute holding a primitive value.{can-compute}
:
A compute that will be used by undefined as a getter/setter when the element's value changes.not(~value)
When the getter is called, gets the value of the compute and returns the negation.
When the setter is called, sets the compute's value to the negation of the new value derived from the element.
Note that not
needs a compute so that it can update the scope's value when the setter is called.
<input type="checkbox" {($checked)}="not(~val)" />
{can-compute}
:
A value stored in a [can-compute].{can-compute}
:
A compute that will be two-way bound by undefined as a getter/setter on the element.index-to-selected(~item, list)
When the getter is called, returns the index of the passed in item (which should be a [can-compute] from the provided list.
When the setter is called, takes the selected index value and finds the item from the list with that index and passes that to set the compute's value.
<select {($value)}="index-to-selected(~person, people)">
{{#each people}}
<option value="{{%index}}">{{name}}</option>
{{/each}}
</select>
{can-compute}
:
A compute whose item is in the list.{can-define/list/list|can-list|Array}
:
A list used to find the item
.returns {can-compute}
:
A compute that will be two-way bound to the select's value.
To make a build of the distributables into dist/
in the cloned repository run
npm install
node build
Tests can run in the browser by opening a webserver and visiting the test.html
page.
Automated tests that run the tests from the command line in Firefox can be run with
npm test
FAQs
Default binding syntaxes for can-stache
We found that can-stache-bindings demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 16 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.