get-git-date

Gets the date a file was last modified in a git repo.

Usage no npm install needed!

<script type="module">
  import getGitDate from 'https://cdn.skypack.dev/get-git-date';
</script>

README

get-git-date

Gets the date a file was last modified in a git repo.

Install

NPM

$ npm i get-git-date

Yarn

$ yarn add get-git-date

Usage

const getGitDate = require('get-git-date');

(async () => {
    const filePath = './path/to/some/file.txt';
    const date = await getGitDate(filePath);

    console.log(date);
    // $ 2018-09-02T18:58:18.000Z
})();

License

MIT © Michael Novotny