1.1.1 • Published 6 years ago

gulp-jsont v1.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

gulp-jsont

NPM Version NPM Downloads NPM License

JSON transformation plugin for Gulp based on JSONT by Stefan Goessner.

Usage

var jsont = require('gulp-jsont');

gulp.task('jsont', function() {
    gulp.src('example.json')
        .pipe(jsont('template.json'))
        .pipe(gulp.dest('./build/'));
});

example.json

{
  "link": {
    "uri": "http://company.com",
    "title":"company homepage"
  }
}

template.json

{
  "link": "<a href=\"{link.uri}\">{link.title}</a>"
}

Results

<a href="http://company.com">company homepage</a>

More information

Here is the documentation got JSONT library: http://goessner.net/articles/jsont/

1.1.1

6 years ago

1.1.0

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago