-
var dust = require('dustjs-linkedin');
app.set('view engine', 'dust');
I get an error:500 Error: Cannot find module 'dust'
-
Currently, dustjs/dustjs-helpers/test/jasmine-test/server/specRunner.js references
dust = require(dustjs-linkedin),
to get dust for testing. If you have been making changes and want to test them, …
-
See more details here:https://github.com/akdubya/dustjs/issues/60
vybs updated
12 years ago
-
installed from npm and manually fixed the bug described in https://github.com/flatiron/formful/pull/2.
runned the example/server.js; the app worked but following lines were thrown:
{ [Error: Cannot…
-
Now that we have fixed:
https://github.com/linkedin/dustjs/pull/127
Another annoying, not so useful thingy...
{
"name" : "Tesla"
}
Does the following add any value?
{#name}
{.}
{/name}
shoul…
vybs updated
12 years ago
-
I installed via the following:
cd ~/.vim/bundle
git clone git://github.com/jimmyhchan/dustjs.vim.git dustjs
then when i try using
vim dustjs/example.dust
when I type {, it gave me error
pattern us…
-
Here are the datas:
``` json
{
"selecteddog": "Bill", // works
"selected": {
"dog": "Bill" // selected.dog doesn't work
},
"dogs": ["Rex", "Bill", "Brutus"]
}
```
Here is the temp…
-
After pulling down a fresh repo, I did NPM install and got the following error:
```
npm ERR! error installing dustjs-linkedin@1.0.0
npm ERR! Error: ENOENT, no such file or directory '/Users/andymatt…
-
-
hello,
I have this model :
```
{
"current": false
}
```
when i try to apply this dust template the output is empty :
```
{#current}
{@select key="{current}"}
{@eq value=false}
bbbb…