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

home

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

home

Gets the home dir or resolves home directories.

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.6K
increased by28%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status Coverage

home

A tiny utility to get the home directory, or resolve a path begins with '~', with cross-platform compatibility.

Since 2.0.0, home only supports node >= 5.12.0

Install

$ npm i home

Usage

const home = require('home')

home()              // Mac && Linux: '/Users/kael', Windows: '\\Users\\kael'
home.resolve('~')   // '/Users/kael'

const some_path = '~/workspace'
home.resolve(some_path)         // '/Users/kael/workspace'
home.resolve(some_path, 'abc')  // '/Users/kael/workspace/abc'

home()

Returns path the home directory specified by operating system.

home.resolve([from...], to)

Resolves to to an absolute path, if to begins with '~', it will be cooked before path.resolve()d.

home.resolve('~/file') // 'Users/kael/file'

The usage of home.resolve is very similar to path.resolve

Another way to think of it is as a sequence of cd commands in a shell.

home.resolve()
// -> current directory

home.resolve('foo/bar', '~/file/', '..', 'a/../subfile')
// -> '/Users/kael/subfile'

Is equivalent to:

home.resolve('foo/bar', '/Users/kael/file/', '..', 'a/../subfile')

Is similar to:

cd foo/bar
cd ~/file/
cd ..
cd a/../subfile
pwd

What about home.relative(), home.join() ?

For now, home doesn't support those, which I thought is unnecessary to make this module too complicated.

I'd rather home.resolve() the directories, before path.join().

var dir = '~/dir'
dir = home.resolve(dir)
path.join(dir, './abc')

License

May be freely distributed under the MIT license.

Copyright (c) Kael Zhang and other contributors.

Keywords

FAQs

Package last updated on 06 May 2019

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