angular-url-encode

1.0.0 • Public • Published

angular-url-encode

MIT License NPM version

🔄 A simple Angular filter to URL-encode or decode a string using encodeURI and decodeURI.

📺 Demo

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 the dist folder
  • npm run dev - produces development version of your library and runs a watcher

Dependencies (0)

    Dev Dependencies (13)

    Package Sidebar

    Install

    npm i angular-url-encode

    Weekly Downloads

    129

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • benjamincharity