Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arpit2438735/grunt-angular-ngbind
Plugin which convert all braces {{}} to ng-bind
https://github.com/arpit2438735/grunt-angular-ngbind
Last synced: about 1 month ago
JSON representation
Plugin which convert all braces {{}} to ng-bind
- Host: GitHub
- URL: https://github.com/arpit2438735/grunt-angular-ngbind
- Owner: arpit2438735
- Created: 2015-12-29T16:16:41.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-20T10:58:59.000Z (almost 9 years ago)
- Last Synced: 2024-10-05T03:19:16.421Z (3 months ago)
- Language: JavaScript
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bracestobind
[![Build Status](https://travis-ci.org/arpit2438735/grunt-angular-ngbind.svg?branch=master)](https://travis-ci.org/arpit2438735/grunt-angular-ngbind)
[![Dependency Status](https://david-dm.org/arpit2438735/grunt-angular-ngbind.svg?style=flat)](https://david-dm.org/alanshaw/david)
[![Download Monthly](https://img.shields.io/npm/dm/bracestobind.svg)](https://www.npmjs.com/package/bracestobind)
[![Donate to help support Arpit development](http://img.shields.io/gratipay/arpit2438735.svg?style=flat)](https://www.gittip.com/arpit2438735/)> Convert {{}} to ng-bind for angular html pages
## Getting Started
This plugin requires Grunt.If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
```shell
npm install bracestobind --save-dev
```Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
```js
grunt.loadNpmTasks('bracestobind');
```## The "bracestobind" task
### Overview
In your project's Gruntfile, add a section named `bracestobind` to the data object passed into `grunt.initConfig()`.```js
grunt.initConfig({
bracestobind: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
})
```### Usage Examples
#### Default Options
```js
grunt.initConfig({
bracestobind: {
options: {},
files: {
'dest/': 'src/**/*.html',
},
},
})
```### Custom Options
```js
grunt.initConfig({
bracestobind: {
options: {
custom_tag: '' //by default it will take as and add for label elements and tags which has text in braces
},
files: {
'dest/': 'src/**/*.html',
},
},
})
```## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).## Release History
* v0.1.4 - Support ng-bind for labels and tags which have next element as `text` ideally if you put ng-bind on parent then internal element are completely ignored by angular.
* v0.1.3 - Changes for current version
* Fix for multiple html/template page
* Support for directive/component {{}} text
* v0.1.1 - Currently supported for div and span elements.## Questions
1. Why I am in this earth want this stupid plugin?
Because it's hard to read `ng-bind` text/value for a us(developer).
{{bar}}
**VS**
Which one is better for readable perspective? `//For me first one`
2. Why I need a conversion {{}} is good?In terms of performance it's slow compare to ng-bind.Below are the links:-
* [http://stackoverflow.com/questions/16125872/angularjs-why-ng-bind-is-better-than-in-angular](http://stackoverflow.com/questions/16125872/angularjs-why-ng-bind-is-better-than-in-angular)
* [http://ng-perf.com/2014/10/30/tip-4-ng-bind-is-faster-than-expression-bind-and-one-time-bind](http://ng-perf.com/2014/10/30/tip-4-ng-bind-is-faster-than-expression-bind-and-one-time-bind/)
* [https://github.com/toddmotto/angular-styleguide/issues/41](https://github.com/toddmotto/angular-styleguide/issues/41)3. Look Great I want to use now but for all tags you guys are supporting?
Yes we support for all tags except `label` one because `ng-bind` breaks for labels other way is to add some tag inside label and put `ng-bind`, but I feel its kind of hack apply so currently thinking of some other solution.If you guys has some solution then you can guys fork it and send me the solution it will be great help.
Any more question comes in your mind just add those question in [Issue Forum](https://github.com/arpit2438735/grunt-angular-ngbind/issues).I will be happy to solve your problem.## License
Copyright (c) 2016 . Licensed under the MIT license.