# tildify **Repository Path**: mirrors_sindresorhus/tildify ## Basic Information - **Project Name**: tildify - **Description**: Convert an absolute path to tilde path: /Users/sindresorhus/dev => ~/dev - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-05-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # tildify > Convert an absolute path to a tilde path: `/Users/sindresorhus/dev` → `~/dev` ## Install ``` $ npm install tildify ``` ## Usage ```js import tildify from 'tildify'; tildify('/Users/sindresorhus/dev'); //=> '~/dev' ``` ## Related See [untildify](https://github.com/sindresorhus/untildify) for the inverse.