New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bookworms-slack-webhook

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bookworms-slack-webhook - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

docs/images/all-commands.png

24

index.js

@@ -1,22 +0,4 @@

import bodyParser from "body-parser";
import { init } from "./src/bookworms";
import expressWorms from "./src/webservers/express.js";
import fastWorms from "./src/webservers/fastify.js";
export default async (route = "/webhooks/slack/bookworms", path) => {
const urlencodedParser = bodyParser.urlencoded({ extended: false });
init(path);
return (app, options) => {
app.post(route, urlencodedParser, (request, reply, next) => {
if (!path) {
reply.send(`No bookmarks found`);
} else {
const { body } = request;
if (body?.text === "" || body?.text.toLowerCase() === "all") {
reply.send(sendBookmarkCommands());
} else {
reply.send(sendBookMarks(body.text));
}
}
next();
});
};
};
export { expressWorms, fastWorms };
{
"name": "bookworms-slack-webhook",
"version": "0.0.2",
"version": "0.0.3",
"description": "This is a simple module to add a route into your server and have slack updates.",

@@ -10,3 +10,4 @@ "main": "./index.js",

"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"start": "node --experimental-vm-modules ./index.js"
"start": "node --experimental-vm-modules ./src/demo/express.js",
"start:fastify": "node --experimental-vm-modules ./src/demo/fastify.js"
},

@@ -31,2 +32,4 @@ "repository": {

"devDependencies": {
"express": "^4.17.3",
"fastify": "^3.27.2",
"jest": "^26.6.3"

@@ -37,4 +40,5 @@ },

"bookworms": "^1.3.2",
"fastify-formbody": "^5.2.0",
"slackify-markdown": "^4.3.1"
}
}
# Bookworms for slack
This is a simple module to add a route into your server and have slack updates.
> Make your bookmarks YMAL available in Slack
This module will add a `POST` request to your [Express](https://expressjs.com/) or [Fastify](https://www.fastify.io/) webserver that [Slack](https://api.slack.com/) can use as a webhook. It is a wrapper around [Bookworms](https://github.com/thearegee/bookworms) so it is recommended you understand how that works first.
This module is currently a prototype but is fully usable.
## How does it work?
- When a Slack [slash command](<(https://api.slack.com/interactivity/slash-commands)>) is called Slack sends a `POST` request a webhook URL
- Your webserver will get the generate a response based on the `POST` body and respond with a flavor of [markdown](https://github.com/jsarafajr/slackify-markdown#readme) designed for Slack
- Your Slack bot will respond privately to the user with their requested bookmarks
The following examples are based on an active Slack bot using Bookworms, how to do this and set up the command words are documented at the bottom.
### All commands
If the user didn't select a top level [Bookworms](https://github.com/thearegee/bookworms) folder or passed `all` the response will be a list of available commands.
```
/bookmarks all
```
![All available commands](./docs/images/all-commands.png)
### Specific bookmarks command
The commands from the `all` command is generated by the top level folders. You use the name of the top level folder and pass it to your slash command.
```
/bookmarks help
```
![Specific command](./docs/images/help-command.png)
## Getting started
```BASH
$ npm i bookworms-slack-webhook
```
Once its added to your project you can import it into your webserver.
```JavaScript
import { expressWorms, fastWorms } from "bookworms-slack-webhook";
```
There is a different export for the two webservers but they have the same interface.
```JavaScript
await expressWorms(
app,
path,
route
);
await fastWorms(
app,
path,
route
);
```
- app - _Required_ the instance of your webserver
- path - _Required_ where the Bookworms bookmarks are coming from, this could be a local or remote `YAML` file. For more information see [Bookworms](https://github.com/thearegee/bookworms)
- route - the path on your webservers hostname Slack will use as a webhook. This parameter is optional with a default value of: `/webhooks/slack/bookworms`
### Examples
Below are simple examples of building a simple webserver with a webhook for Slack to use.
#### Express
```JavaScript
import express from "express";
import { expressWorms } from "bookworms-slack-webhook";
const app = express();
const port = 3000;
expressWorms(
app,
"https://raw.githubusercontent.com/thearegee/bookworms/main/demo/config/bookmarks.yaml"
);
app.get("/", (req, res) => {
res.send("Hello World!");
});
app.listen(port, () => {
console.log(`Example Express app listening on port ${port}`);
});
```
#### Fastify
```JavaScript
import Fastify from "fastify";
import { fastWorms } from "../../index.js";
const app = Fastify();
const port = 3000;
await fastWorms(
app,
"https://raw.githubusercontent.com/thearegee/bookworms/main/demo/config/bookmarks.yaml"
);
app.get("/", (request, reply) => {
reply.send("Hello World!");
});
app.listen(port, () => {
console.log(`Example Fastify app listening on port ${port}`);
});
```
## Integrated with Slack
You can add Bookworms to your already existing bot or read about [how to create a Slack bot](https://slack.com/intl/en-gb/help/articles/115005265703-Create-a-bot-for-your-workspace).
This webhook works on using [Slash commands](https://api.slack.com/interactivity/slash-commands).
![Setting up Slash commands](./docs/images/slash-commands.png)
- Command - The slpash command you want to use to trigger the webhook
- Request URL - The full URL for your service and your route path, this needs to be internet facing for Slack to call it
- Short Description - Help your users know what your the command does
- Usage Hint - A sample command for your users to know how to get started `all` will return all the top level folders
## Todo
- [Bookworms](https://github.com/thearegee/bookworms) was not designed to be included as part of a webserver so it uses console log and also exits process on an error. These are not ideal for web service so need to be fixed
- Test automation
- I dont really like there is a fastify and express export, want to clean that up a bit
- Would be nice to drill into deep folders
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc