Giter VIP home page Giter VIP logo

line-express-userlogger's Introduction

line-express-userlogger

A express.js middleware can automatically record user information in LINE messages API nodejs-sdk. This logger will be triggered by user with following event and unfollowing event.

(When user unfollows your bot, DB will clean his or her data.)

Usage

Run mongoDB service in docker and make sure it run at project root directory:

docker run --rm -d --name mongo -p 27017:27017 -v $PWD/db_data:/data/db mongo

Install middleware:

npm install line-express-userlogger --save

In line-bot-sdk-nodejs, you can use webhook as below:

app.post('/webhook', line.middleware(config), (req, res) => {
    //something...
});

Now, you just need to add userlogger in middleware:

const userlogger = require('line-express-userlogger')
app.post('/webhook', line.middleware(config), userlogger, (req, res) => {
    //something...
});

When express.js server start, make sure Connected to MongoDB string showing in console.

DB schema

In mongoDB shell:

>use line

switched to db line

>db.users.find({}).pretty()

{
	"_id" : ObjectId("5ed5ebcd77dc52b3a3b3d972"),
	"userId" : "U364xxx......",
	"type" : "user",
	"timestamp" : 1591077837810,
	"__v" : 0
}

line-express-userlogger's People

Contributors

dependabot[bot] avatar yiyu0x avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.