Hi folks,
before I do invest in a license for SB... can I export desktop apps aka executables from SB? The documentation doesn't mention anything like that, only WebApp, Android and IOS.
I am not talking about a PWA, but an executable like you would create using Cordova or similar tools.
Thanks in advance for any answer.
Cheers
Michael
Can I create Desktop apps?
Re: Can I create Desktop apps?
For desktop app, you can use PureBasic which is very close syntax wise and create app for linux windows and osx
Re: Can I create Desktop apps?
Hi Fred,
and thanks for the quick reply. I was hoping it would do that as the eco system regarding 3rd party libs in the javascript space is rather large.
Anyway, my question is answered, thanks again.
Cheers
Michael
and thanks for the quick reply. I was hoping it would do that as the eco system regarding 3rd party libs in the javascript space is rather large.
Anyway, my question is answered, thanks again.
Cheers
Michael
Re: Can I create Desktop apps?
As Fred said, PureBasic is better for desktop applications, but nothing prevents you from also making desktop applications with SpiderBasic. 

Re: Can I create Desktop apps?
PureBasic is the way to go for sure
however is you need something simple , you can use one of tens of option of html->app like cordova itself
neutralino.js etc etc
will wrap html into an "app"
But for sure real app has some advantages ..
however is you need something simple , you can use one of tens of option of html->app like cordova itself
neutralino.js etc etc
will wrap html into an "app"
But for sure real app has some advantages ..
Christos
-
- Posts: 332
- Joined: Fri Sep 22, 2017 7:02 am
Re: Can I create Desktop apps?
I think I once saw something from Peter on how to turn Spiderbasic apps into desktop apps with NodeJs. It looked very simple. But unfortunately I don't have a link to it.
Re: Can I create Desktop apps?
it was neutralinojs.org
but there are hundrends more
cordova itself can craete windows apps, but need more steps, electronjs.org simple , todesktop.com even simpler (this not free) etc...
it was neutralinojs.orgDirk Geppert wrote: Thu Oct 24, 2024 6:15 pm I think I once saw something from Peter on how to turn Spiderbasic apps into desktop apps with NodeJs. It looked very simple. But unfortunately I don't have a link to it.
but there are hundrends more
cordova itself can craete windows apps, but need more steps, electronjs.org simple , todesktop.com even simpler (this not free) etc...
Christos
Re: Can I create Desktop apps?
How to run a SB-WebApp as a Desktop-ApplicationDirk Geppert wrote: Thu Oct 24, 2024 6:15 pm I think I once saw something from Peter on how to turn Spiderbasic apps into desktop apps with NodeJs. It looked very simple. But unfortunately I don't have a link to it.
Re: Can I create Desktop apps?
You can also do it with one line of Python and not have to deal with flavor-of-the-week JS platforms and bulky installs.. You can even pack everything in to one executable with pyinstaller so end-users don't need to install anything besides your product..
It'd make a whole lot more sense to just do it in PB, though.. Making a desktop product that uses browser processes is wasteful
It'd make a whole lot more sense to just do it in PB, though.. Making a desktop product that uses browser processes is wasteful
Re: Can I create Desktop apps?
Fully agreed, use PB if you want blazing fast and super small and portable executables for all major desktop platforms. If you need HTML/CSS, PB has WebViewGadget/WebGadgettj1010 wrote: Mon Oct 28, 2024 5:26 pm It'd make a whole lot more sense to just do it in PB, though.. Making a desktop product that uses browser processes is wasteful
