Has anyone built chatbot functionality with Feathersjs?
Currently trying to figure out if the Botkit framework will work (which would be great) or if I'll need to build something from scratch.
Thanks.
Related
I am trying to build a website following this Tutorial (Building Web Applications Using Node.js) and currently using HTML, ejs, Node.js (+express), yarn and javascript. I would like to integrate some Tabs like How TO - Tabs.
But I am struggeling to control the hiding and showing tabs from the js routing file. I did not find a way to control the tab divs by the express router. Could anyone please help me or point me into a direction?
Thank you.
PS. My plan is to use parts of the existing Node.js and HTML artifacts to build an app using Electron, Web Assembly and Rust. That is why I use all those things, which might seem a bit overkill at first.
How could I or would it be appropriate to integrate Python code with HTML/CSS/JS as the user interface in creating desktop applications. A simple example; if I wanted to created a function with Python that prints "Hello World!" and use HTML/CSS/JS to create a user interface (make it fancy, perhaps add some images), so I can use it as a desktop application. How would I go about this?
I understand I could use libraries such as Tkinter, but it doesn't allow the flexibility of customising user interface.
I've read about using Electron, but I haven't seen many people using Python as the back-end. Any help or information in relation to using Python as a back-end with HTML/CSS/JS as the user interface will be greatly appreciated.
You're best option is to look at Flask (Almost no learning curve) as a backend and you can continue using HTML/CSS/JS as frontend.
However to create a desktop application you will need to integrate (Your frontend) with tools like electron.
Yes you can. You need to choose framework of python. like Django etc. Then you can make own desktop application as you can.
I have a Meteor.js app similar to this one -> https://www.youtube.com/watch?v=66DH69e-wJ0&t=936s as my first Meteor.js app.
And I have created a API.ai chatbot.
And now I need some guildlines of what should I learn/read to achieve something like this:
I want a function to send user messages to the api and then posts
api's answer into the chat.
It's hard to answer your question if we don't know any details, but I would suggest to read carefully Meteor tutorial. Depending on frontend library you use:
Meteor tutorial for Blaze
Meteor tutorial for Angular
Meteor tutorial for React
If you would like to use other libraries the best place to start is the GitHub repository with Meteor integration for this library. For example Vue.
Secondly, you should read Meteor guide. You will find here tons of useful tips.
I took a quick look at the video you included and API.ai. I guess that you will need this node package. Also, take a closer look at Methods section in Meteor guide. You will need them to use API.ai package from your client side. When you work with third-party APIs you should also read about HTTP package.
I built a chatbot based on API.ai and I'v integrate it with Heroku and Facebook messenger and it is working well. Now, I would like to to integrate this chatbot to Buildfire.com in order to publish it as IPhone and Android apps.
Can someone help me with this case please?
So you can do this by creating a custom BuildFire plugin. To get more information about how to do this click here
https://github.com/BuildFire/sdk/wiki
Its pretty simple. Using the same Javascript, HTML and CSS that you used for your web application you should be able to migrate that into a BuildFire plugin.
There are many video tutorials on this here
https://www.youtube.com/watch?v=IZcvBZT-zjY&list=PLnq_waykAGlgsERwxHmGNokE6WIeVeH0I
Hope this helps
I'm developing a mobile application using Meteor. I have found a little difficult to make the UI controls to look as the mobile apps do (scrolls, checkbox, buttons). Searching the web I have found Ionic as a help for mobile like UI.
My question is: Should I continue developing my app with METEOR not taking special care so far of UI, and deploy IONIC at the end of my development? Or IONIC could make interaction different between client and server so I should learn and adapt IONIC now?
My app requires a server side which process a lot of app logic, thats why I'm using Meteor. If there are better options for front end Framework instead of Ionic, please suggest them.
Thanks in advance.