Build LINE Bot web application with Node.js and Heroku

Overview In order to check the operation of the LINE Bot web application that using the LINE Messaging API, you need a server that can be accessed externally.This post shares the creation procedure of LineBot web application using Heroku. Basic flow 1. Heroku development environment For web online development environment, Heroku + Cloud 9 is […]

read more

Write a Heroku Scheduler batch for MangoDB+Salesforce with Node.js

In previous post,I had shared how to 《Access Salesforce data via APIs(JSForce) from Outside Service》. In this post I will share about how to write a Heroku Scheduler batch for synchronizing MangoDB data to Salesforce with Node.js, like the below outline picture. ※I have no doubt that there have many ways to do connect between […]

read more

Awesome Node.js development environment with Heroku and Cloud9

As we know,Heroku enables developers to build and run Node.js apps on it,and the most important,it is FREE. Today I will try to setup an awesome Node.js development environment and deployment with Cloud9 and Heroku. Of course, we need to sign up first. 1.Sign up 1.https://c9.io/ 2.https://www.heroku.com 2.Create a new App in heroku Create a […]

read more

Encrypte & Decrypte string in Node.js

I have tried to encrypte and decrypte string in Node.js recently. There has many code examples at Internet, eg: Reference:http://qiita.com/sckm/items/232914af2959eefe505e Run it in console commond but the following error has occurred. Ummm….,that is weird,may be ‘base64’ encoding will not working with ‘aes192’..? Anyway, the following code works fine for me. And the console log.

read more