I would like to make my own application using LunaPark for Telegram MiniApp They have their own sdk for Vue. How can this be wrapped into Nodes?
So, you can integrate some NPM packages into Luna Park with code functions (which require writing some JS).
Then, you can trigger your function from the Luna Park visual scripting system
And the package is automatically imported
Be careful, it only works with browser compatible packages! (if it requires node, the desktop version of Luna Park will handle it)
So you may be able to communicate with Telegram using the appropriate npm package.
I admit, I don’t know what your specific package does… If it exposes only some functions to be called, it’s likely that it will work with Luna Park. However, if it generates a full UI, it may be a bit weird to work on with Luna Park.
Is just SDK for telegram mini apps. But it’s really for backend work.
I was also thinking, maybe it would be a good idea to use LP to create custom interfaces for the popular Headless CMS DirectUS. As far as I understand, they are written in Vue there.
Is just SDK for telegram mini apps. But it’s really for backend work.
If it’s just a backend SDK, it should work with Luna Park without any problem.
I was also thinking, maybe it would be a good idea to use LP to create custom interfaces for the popular Headless CMS DirectUS.
Since Directus is a backend, you can create a frontend with Luna Park and call the Directus API to retrieve any information. Now if you want to build components to be used in the Directus dashboad, I’m afraid Luna Park is not ready for this yet…
I didn’t understand, LP is NOT redy for this?
For example: take it as a learning task Extensions | Directus Docs and implement it in LP.
I’m just thinking about application cases and Usefull homework )))
I didn’t understand, LP is NOT redy for this?
Sorry, that’s what I meant, Luna Park is NOT ready to create independent components to be used somewhere else.
For example: take it as a learning task Extensions | Directus Docs and implement it in LP.
So you can 100% implement this kind of dropdown with Luna Park using a Directus backend, as long as you have the Directus API endpoint URL. But then it should be used inside a Luna Park project.
I realized this can’t be done for the Directus GUI.
I had no doubt that this could be implemented for a Web application using data from Directus via the rest api, this is how my learning process in Noodl and Wappler goes.


