Socket
Socket
Sign inDemoInstall

linebot-mini-hono-sdk

Package Overview
Dependencies
61
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    linebot-mini-hono-sdk

``` $ npm i hono linebot-mini-sdk ```


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

sample

$ npm i hono linebot-mini-sdk
import { Hono } from 'hono'
import line from 'linebot-mini-sdk'
const app = new Hono()

let client: any;
let isAlreadyInited = false;

app.all('*', async(c:any, next) => {
	if(!isAlreadyInited){
		isAlreadyInited = true
    const config = {
      channelAccessToken: c.env.channelAccessToken || undefined,
      channelSecret: c.env.channelSecret || undefined ,
    }
    client = new line.MessagingApiClient(config);
	}
	await next()
})

app.get('/', (c) => c.text('Hello Hono!!!!'));

const handleEvent = async (event: any) => {
  if (event.type !== 'message' || event.message.type !== 'text') {
    return Promise.resolve(null);
  }

  const message = [{
    type: 'text',
    text: event.message.text
  }];

  try {
    const res = await client.replyMessage(event.replyToken, message);
    const json = await res.json();
    return Promise.resolve(json);
  } catch (error) {
    console.log(error)
    return Promise.resolve(error);
  }
}

app.post('/webhook', line.middleware, async (c) => {

    try {
      const body = await c.req.json();
      const events: any[] = body.events; // Explicitly define the type of 'events' as 'any[]'
      console.log(`req:`,events);
      const responses = await Promise.all(events.map((event: any) => handleEvent(event))); // Explicitly define the type of 'event' as 'any'
      console.log(`res:`,responses[0]);

      return c.json({ message: "ok" });
  } catch (error) {
      console.log(error)
  }

  return c.text('Hello Hono!')
})

export default app

FAQs

Last updated on 01 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc