Showing posts with label pemrograman. Show all posts
Showing posts with label pemrograman. Show all posts

Send Whatsapp with Node JS

You can send text with whatsapp use nodejs. This project can you use to build project with automatic send message or you can build project to reminder with whatsapp text.First, you use whatsapp-web.js download with npm to install in your project.npm i whatsapp-web.jsSetting in app.js (default your primary js)const express = require('express')const expressLayouts = require('express-ejs-layouts')const multer = require('multer')const app = express()const port = 4000const storage = multer.diskStorage({ destination: function (req, file, cb) { cb(null, './uploads') }, filename: function...
[Read more]