Send a mass message on Facebook with the help of ts-messenger-api.
Make sure you have Node.js installed then:
1. Clone or download this repository.
2. Make sure the current directory is the downloaded repository.
3. npm install
4. node index
5. Have fun with the web interface.
The message can contain variables and spintax.
The format for using a variable is %variable name%
and the format for using (nested) spintax is {part1|{part2a|part2b}|part3}
.
Here are some examples:
Hello {world|worlds}!
outputsHello world!
orHello worlds!
- Implying you have a
color
variable with the value ofgreen
:Hello %color% world!
outputsHello green world!
The {sky|grass} is %color%.
outputsThe sky is green.
orThe grass is green.
This project is licensed under the MIT License - see the LICENSE file for details.