Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/madeleineostoja/gatsby-plugin-notify
Gatsby plugin that adds system notifications to your development build
https://github.com/madeleineostoja/gatsby-plugin-notify
gatsby gatsby-plugin notifications webpack webpack-notify
Last synced: about 1 month ago
JSON representation
Gatsby plugin that adds system notifications to your development build
- Host: GitHub
- URL: https://github.com/madeleineostoja/gatsby-plugin-notify
- Owner: madeleineostoja
- License: mit
- Created: 2019-08-28T03:40:57.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T08:19:30.000Z (almost 2 years ago)
- Last Synced: 2024-10-07T08:08:42.674Z (about 1 month ago)
- Topics: gatsby, gatsby-plugin, notifications, webpack, webpack-notify
- Language: JavaScript
- Homepage: https://www.gatsbyjs.org/packages/gatsby-plugin-notify/
- Size: 214 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gatsby-plugin-notify
[![npm](https://img.shields.io/npm/v/gatsby-plugin-notify)](https://www.npmjs.com/package/gatsby-plugin-notify) ![GitHub](https://img.shields.io/github/license/tomorrowstudio/gatsby-plugin-notify)
Add system notifications to your Gatsby development builds
## Install
```sh
npm i gatsby-plugin-notify
```## How to use
Add the plugin to your `gatsby-config.js`
```js
module.exports = {
plugins: [
'gatsby-plugin-notify'
]
}
```You will receive a native notification when your development build breaks, and when it builds successfully again after a breakage.
The plugin accepts any options that can be passed to [webpack-notifier](https://github.com/Turbo87/webpack-notifier#configuration)
```js
module.exports = {
plugins: [
{
resolve: 'gatsby-plugin-notify',
options: {
title: 'My Site'
}
]
}
```---
Made with ❤️ by [Tomorrow](https://www.tomorrowstudio.co)