简介
ALemonJS
ALemonJS ( 发音为 /əˈlemən/ ) 基于 JavaScript 所构建的聊天平台机器人开发框架
The framework describes the operations to be performed by different events by defining response functions.
- res.tsx
- res.ts
Basic Example of Sending Messages
import React from 'react'
import { createSelects } from 'alemonjs'
import { Text, useSend } from 'alemonjs/jsx'
export const selects = createSelects(['message.create'])
export default onResponse(selects, event => {
const Send = useSend(event)
Send(<Text>hello</Text>)
})
Basic Example of Sending Messages
import { createSelects } from 'alemonjs'
import { Text, useSend } from 'alemonjs'
export const selects = createSelects(['message.create'])
export default onResponse(selects, event => {
const Send = useSend(event)
Send(Text('hello'))
})
