yankouskia / notification-feed

πŸ“£ Secured notification feed πŸ”

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub last commit GitHub contributors Twitter URL GitHub package.json dynamic GitHub license

notification-feed

  • Light
  • Secured
  • Integrated with twitter
  • Easy to embed

Notification feed. Currently integrated with Twitter Twitter URL. Work in progress, see roadmap below.

Demo

Examples on these web sites are launched just for demonstrating purposes!

www.ucla.edu

http://time.com

Intergation guide

If you do not have application at twitter dev go here to create one: Twitter Application Management. Your application will be issued an apiKey (API Key), a secretKey (API secret key), an accessToken (Access token) and accessTokenSecret (Access token secret). Then just simplmy paste them into server/env.

To run notificator widget locally:

git clone https://github.com/yankouskia/notification-feed.git
cd notification-feed
yarn
yarn server

To run on any page of your resource:

const script = document.createElement('script');

script.src = 'http://localhost:3000/sdk.js';

script.onload = () => {
  window.notificator = new window.Notificator({
    search: 'insert any phrase OR hashtag here',
  });

  window.notificator.render();
}

document.body.appendChild(script);

// to terminate widget:
window.notificator.terminate();

Roadmap

  • Customizable UI for each feed
  • Facebook, Instagram, custom-service feeds
  • Create SaS
  • Provide as global npm package

Contributing

notification-feed is open-source "SaS", opened for contributions. Suggestions/issues/questions are highly appreciated as well!

License

notification-feed is MIT licensed

About

πŸ“£ Secured notification feed πŸ”

License:MIT License


Languages

Language:JavaScript 87.3%Language:HTML 12.7%