Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hike

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hike

JavaScript port of Ruby's Hike, a library for finding files in a set of paths.

  • 0.1.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.2K
increased by135.13%
Maintainers
1
Weekly downloads
 
Created
Source

hike

Build Status

Javascript port of Hike (Ruby) - a library for finding files in a set of paths. Use it to implement search paths, load paths, and the like.

See API docs for details on methods.

Examples

Find JavaScript files in this project:

trail = new hike.Trail("/home/ixti/Projects/hike-js");
trail.extensions.append(".js");
trail.paths.append("lib", "test");

trail.find("hike/trail");
# => "/home/ixti/Projects/hike-js/lib/hike/trail.js"

trail.find("test_trail");
# => "/home/ixti/Projects/hike-js/test/test_trail.rb"

Explore your shell path:

trail = new hike.Trail("/");
trail.paths.append(process.env.PATH.split(":"));

trail.find("ls");
# => "/bin/ls"

trail.find("gem");
# => "/home/ixti/.rvm/rubies/ruby-1.9.2-p290/bin/gem"

Installation

$ npm install hike

License

Copyright (c) 2012 Vitaly Puzrin

Released under the MIT license. See LICENSE for details.

Keywords

FAQs

Package last updated on 26 Jul 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc