0.2.0 • Published 3 years ago

gatsby-source-wakatime v0.2.0

Weekly downloads
5
License
MIT
Repository
github
Last release
3 years ago

gatsby-source-wakatime

A Gatsby Source to import your data from the WakaTime API.

This source requires your WakaTime API Key which can be found in your account settings.

NOTE

If you are on the FREE tier on Wakatime, you are limited to a maxium of 14 days of data.

Getting Started

  1. Install the package with yarn or npm

yarn add gatsby-source-wakatime

  1. Add to plugins in your gatsby-config.js
module.exports = {
    plugins: [
        {
            resolve: "gatsby-source-wakatime",
            options: {
                apiKey: ""
            }
        }
    ]
};

Optional Settings

module.exports = {
    plugins: [
        {
            resolve: "gatsby-source-wakatime",
            options: {
                baseURL: "https://wakatime.com/api/v1",
                apiKey: "",
                timespan: "7day" // any timespan acceptable by the `ms` module
        }
    ]
};

Contributing

Every contribution is very much appreciated. Feel free to file bugs, feature- and pull-requests.

❤️ If this plugin is helpful for you, star it on GitHub.