Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
chatblocks
Advanced tools
Chatbots are just another type of user interface. Nothing more, nothing less.
At least if we think about chatbots as yet-another-UI, we can simplify development in many ways.
Chatblocks allows you to separate presentational layer, bot logic (NLP etc.) and server-side work (configuring webhooks etc). With this approach, learning curve for your team decreases.
Chatblocks treats messages as representation of some state. It does not care about your implementation of webhook, database integration, NLP, or how you deal with payloads.
With our convenient React-style API, you can build your chatbots declaratively, reuse components and integrate with other services (like database or so). We've got ready-made components for Messenger chatbot, but your components can do anything.
It means you can build chatbots nearly as fast as in Chatfuel, for a fraction of the price, but with all elasticity and possibilities of the custom chatbot.
© Szymon Korytnicki, chatblocks.net
npm install chatblocks
For development purposes, set up Messenger bot the easiest way possible. You have to create your own Facebook app on Developers page. In your webhook, pass events to Chatblocks instance:
app.post("/webhook", (req, res) => {
const data = req.body;
if (data.object === "page") {
data.entry.forEach(function (pageEntry) {
pageEntry.messaging.forEach(function (event) {
// Receive event
// Transform each event as you wish
// Send it to the bot
Bot.render({
senderId: event.sender.id,
event: event
});
});
});
}
res.sendStatus(200);
});
Well, we should actually create a chatblocks instance:
const Chatblocks = require("chatblocks");
const MainComponent = require("./compiled/blocks/MainComponent");
// pass config in constructor
const Bot = new Chatblocks.Bot({
facebookAPIVersion: "v2.11",
pageAccessToken: process.env.pageAccessToken,
component: MainComponent
});
and create simple chatblock:
const Chatblocks = require("chatblocks");
const {Block, Text, ButtonTemplate, Button} = Chatblocks;
async function MainComponent(event) {
return <Block>
<Text>Hello!</Text>
<ButtonTemplate text="How are you?">
<Button payload="fine">Fine</Button>
<Button url="http://chatblocks.net">chatblocks.net</Button>
</ButtonTemplate>
</Block>
}
module.exports = MainComponent;
This was easy, huh? Let's create another block to react to button click:
const Chatblocks = require("chatblocks");
const {Block, Text, ButtonTemplate, Button} = Chatblocks;
// usually you want to keep one block per file
async function FineBlock(props) {
return <Text>Test {props.emoji}</Text>
}
async function MainComponent(event) {
// event is available in main block only.
// It can be passed down with props
if (event.postback && event.postback.payload === "fine") {
// you can transform event here, or in your webhook
return <FineBlock emoji="🎉"/>
// use React-style props to share data
}
return <Block>
<Text>Hello!</Text>
<ButtonTemplate text="How are you?">
<Button payload="fine">Fine</Button>
<Button url="http://chatblocks.net">chatblocks.net</Button>
</ButtonTemplate>
</Block>
}
// Note that it's pure JavaScript. You can perform any operation here (database, whatever)
Chatblocks' JSX has to be compiled to pure JavaScript, which looks like:
async function TextBlock() {
return await Chatblocks.createElement(Block, null,
[
await Chatblocks.createElement(Text, null, "Hello")
]
);
}
createElement takes function name, props and spread children parameters. Then, chatblocks creates requests to Facebook, to display messages in conversation.
Chatblocks is compiled using transform-react-jsx babel plugin, with custom pragma. Configuration of your build and watch system is up to you. Your .babelrc file can look like:
{
"plugins": [
["transform-object-rest-spread"],
["transform-react-jsx", { "pragma": "await Chatblocks.createElement" }]
]
}
Then, you can run commands: babel --watch blocks --out-dir build
and nodemon app.js
assuming app.js is your server file and you have all chatblocks in blocks directory. In app.js, include chatblocks from build
directory.
After compilation, you can deploy your bot to Heroku for small price.
Description available in github Wiki.
Create separate Bot
instances with different page access tokens.
Components are very simple. They are asynchronous functions. Function should return Block
, array, or single message.
You can process your data in render
method or transform it before it reaches your bot (recommended).
It is, and it isn't. There are many features to add and PR's are welcome. Project will have many internal changes in near future, but I don't expect them to break external API. If you are about to build big chatbot (I mean with tens of thousands of daily users), you might want to read chatblocks code and decide yourself about your infrastructure etc.
Take a look at Issues and Projects of github repo.
Generate sample chatbot with chatblocks-cli
(npm i -g chatblocks-cli
)
Chatblocks is created and maintained by Szymon Korytnicki.
FAQs
Declarative chatbots for Messenger
We found that chatblocks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.