This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* (1)Get tweets by search keyword and (2)Stemming(Korean), (3)save to mysql finally | |
*/ | |
var Promise = require('bluebird'); | |
var TwitterKoreanText = require('twtkrjs'); | |
var twitterKoreanText = new TwitterKoreanText({ | |
stemmer: true, // (optional default: true) | |
normalizer: true, // (optional default: true) |