angular-url-encode
v1.0.0
Published
A simple Angular filter to URL-encode a string.
Downloads
843
Maintainers
Readme
angular-url-encode
:arrows_counterclockwise: A simple Angular filter to URL-encode or decode a string using encodeURI
and decodeURI
.
Comments and Pull Requests welcome!
Contents
Dependencies
- AngularJS (^1.4.0)
Installation
NPM
$ npm install angular-url-encode --S
Bower
$ bower install angular-url-encode --S
Manually
Add the script and styles to your HTML:
<script src="../path/to/angular-url-encode/dist/angular-url-encode.js"></script>
Add bc.AngularUrlEncode
to your module's dependencies:
angular.module('myModule', ['bc.AngularUrlEncode']);
Usage
HTML
As a filter in the DOM:
<p>{{ myPlainString | bcEncode }}</p>
<p>{{ encodedString | bcDecode }}</p>
JavaScript
Using the $filter
service:
// Encode
this.encodedString = $filter('bcEncode')(this.myPlainString);
// Decode
this.decodedString = $filter('bcDecode')(this.encodedString);
Development
npm run build
- produces production version of your library under thedist
foldernpm run dev
- produces development version of your library and runs a watcher