GithubHelp home page GithubHelp logo

url-breadcrumb's Introduction

url-breadcrumb

A simple function that creates a breadcrumb array from an url path string

  • works on the server as well as in the browser
  • the path string must start with a slash '/'
  • node.js e.g. req.url
  • browser e.g. window.pathname

install

npm install --save url-breadcrumb

usage

var breadcrumb = require('url-breadcrumb');
var crumbs = breadcrumb(req.url);

crumbs = breadcrumb('/#crumbs');
// -> [{name: '⌂', NAME: '⌂', url: '/'}]

crumbs = breadcrumb('/A%20-%20B', { beautify: function(str){
  return str.toLocaleLowerCase();
}});
/* ->
[
  {name: '⌂', NAME: '⌂', url: '/'},
  {name: 'A - B', NAME: 'a - b', url: '/A%20-%20B'}
]
*/

crumbs = breadcrumb('/users/profile/change/address?street=imZiel&nr=3#confirm', {home : 'home'});
/* ->
[
  {name: 'home', NAME: 'home', url: '/'},
  {name: 'users', NAME: 'users', url: '/users'},
  {name: 'profile', NAME: 'profile', url: '/users/profile'},
  {name: 'change', NAME: 'change', url: '/users/profile/change'},
  {name: 'address', NAME: 'address', url: '/users/profile/change/address'}
]
*/

crumbs = breadcrumb('/users/profile/change/address?street=imZiel&nr=3#confirm', {endingSlash : true});
/* ->
[
  {name: '⌂', NAME: '⌂', url: '/'},
  {name: 'users', NAME: 'users', url: '/users/'},
  {name: 'profile', NAME: 'profile', url: '/users/profile/'},
  {name: 'change', NAME: 'change', url: '/users/profile/change/'},
  {name: 'address', NAME: 'address', url: '/users/profile/change/address'}
]
*/

Check test.js for more examples.

options

the following optional options can be provided as {Object} in the second argument.

  • home {String}: name for the home link
  • endingSlash {Boolean}: true, if the url elements should contain the ending slash '/'
  • beautify {Function}: beautify function

test

npm test

license

MIT

author

Andi Neck | @andineck | [email protected] | intesso

url-breadcrumb's People

Contributors

andineck avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.