Basic for web apps?

For everything that's not in any way related to PureBasic. General chat etc...
MachineCode
Addict
Addict
Posts: 1482
Joined: Tue Feb 22, 2011 1:16 pm

Basic for web apps?

Post by MachineCode »

I love PureBasic, but I keep getting interested in web-based apps lately. Is there something like Basic for websites? You know, so a visitor goes to my website and runs an app or game that I've written, right in the browser? What's the closest thing to Basic to do this? Thanks.
Microsoft Visual Basic only lasted 7 short years: 1991 to 1998.
PureBasic: Born in 1998 and still going strong to this very day!
wilbert
PureBasic Expert
PureBasic Expert
Posts: 3943
Joined: Sun Aug 08, 2004 5:21 am
Location: Netherlands

Re: Basic for web apps?

Post by wilbert »

VBScript if your browser supports it.
JavaScript should work on all browsers but is less like basic.
User avatar
the.weavster
Addict
Addict
Posts: 1581
Joined: Thu Jul 03, 2003 6:53 pm
Location: England

Re: Basic for web apps?

Post by the.weavster »

Real software do a web edition of Real Basic.
I seem to recall there's another called Morfik.
I think NS BASIC App Studio also outputs HTML/CSS/JavaScript

I can't vouch for any of them, I know of them but I haven't used them.

I've grown to really like QooxDoo, it's not BASIC but it's cool.
jack
Addict
Addict
Posts: 1358
Joined: Fri Apr 25, 2003 11:10 pm

Re: Basic for web apps?

Post by jack »

came across this http://www.runbasic.com/
juror
Enthusiast
Enthusiast
Posts: 233
Joined: Mon Jul 09, 2007 4:47 pm
Location: Courthouse

Re: Basic for web apps?

Post by juror »

the.weavster wrote:Real software do a web edition of Real Basic.
I seem to recall there's another called Morfik.
I think NS BASIC App Studio also outputs HTML/CSS/JavaScript

I can't vouch for any of them, I know of them but I haven't used them.

I've grown to really like QooxDoo, it's not BASIC but it's cool.
NSBasic's yahoo groups support is a big turn off. QooxDoo does look cool. Thanks.
User avatar
Blood
Enthusiast
Enthusiast
Posts: 161
Joined: Tue Dec 08, 2009 8:34 pm
Location: United Kingdom

Re: Basic for web apps?

Post by Blood »

MachineCode wrote:I love PureBasic, but I keep getting interested in web-based apps lately. Is there something like Basic for websites? You know, so a visitor goes to my website and runs an app or game that I've written, right in the browser? What's the closest thing to Basic to do this? Thanks.
If you want to program web applications using basic you are going to be severely disappointed. Why not try expanding your knowledge by learning a new language, something that is meant for building web apps? There are plenty to choose from. :)
C provides the infinitely-abusable goto statement, and labels to branch to. Formally, the goto is never necessary, and in practice it is almost always easy to write code without it. We have not used goto in this book. -- K&R (2nd Ed.) : Page 65
USCode
Addict
Addict
Posts: 924
Joined: Wed Mar 24, 2004 11:04 pm
Location: Seattle

Re: Basic for web apps?

Post by USCode »

What would it take to allow PB to be used to develop web apps?
Couldn't a PB library be developed to provide all of what is needed?
What WOULD be needed to be provided by a library at a minimum?
void
Enthusiast
Enthusiast
Posts: 116
Joined: Sat Aug 27, 2011 9:50 pm
Location: Washington, USA

Re: Basic for web apps?

Post by void »

It'd need a backend, first of all.

Purebasic spits out assembly code that it feeds an assembler. Not exactly applicable with 'web app', beyond the back-end portion of an AJAX style system.
User avatar
utopiomania
Addict
Addict
Posts: 1655
Joined: Tue May 10, 2005 10:00 pm
Location: Norway

Re: Basic for web apps?

Post by utopiomania »

NSBasic App Studio is the closest thing I can think of. VBScript is as basic as any basics,
and y7ou can put your app in an iframe.
User avatar
Kuron
Addict
Addict
Posts: 1626
Joined: Sat Oct 17, 2009 10:51 pm
Location: Pacific Northwest

Re: Basic for web apps?

Post by Kuron »

MachineCode wrote:I love PureBasic, but I keep getting interested in web-based apps lately. Is there something like Basic for websites? You know, so a visitor goes to my website and runs an app or game that I've written, right in the browser? What's the closest thing to Basic to do this? Thanks.
If you are content with games and want to stay in the PB realm, this game maker was created with PB:

http://www.tululoo.com

It is not what you are looking for (a BASIC language), but it would give you a PB-related way to get familiar with the "basics" (forgive the pun) of developing for the web. :wink:
Best wishes to the PB community. Thank you for the memories. ♥️
ricardo
Addict
Addict
Posts: 2438
Joined: Fri Apr 25, 2003 7:06 pm
Location: Argentina

Re: Basic for web apps?

Post by ricardo »

PHP is really easy and almost each server runds it and its free.
ARGENTINA WORLD CHAMPION
User avatar
luis
Addict
Addict
Posts: 3895
Joined: Wed Aug 31, 2005 11:09 pm
Location: Italy

Re: Basic for web apps?

Post by luis »

ricardo wrote:PHP is really easy and almost each server runds it and its free.
Yet it's not basic and most of all is a server side language.

The question was for a BASIC to write programs executable inside the BROWSER.
"Have you tried turning it off and on again ?"
MachineCode
Addict
Addict
Posts: 1482
Joined: Tue Feb 22, 2011 1:16 pm

Re: Basic for web apps?

Post by MachineCode »

luis wrote:The question was for a BASIC to write programs executable inside the BROWSER.
Yep. RunBasic looks very much like what I'm after; I'll have to study it. It has all the expected BASIC keywords and constructs (it's by the makers of Liberty BASIC), and preliminary tests seem to show it's what I want. Thanks for all replies!

(BTW, if Liberty BASIC can make a web version of their language, then maybe PureBasic can do it one day, too?).
Microsoft Visual Basic only lasted 7 short years: 1991 to 1998.
PureBasic: Born in 1998 and still going strong to this very day!
LuCiFeR[SD]
666
666
Posts: 1033
Joined: Mon Sep 01, 2003 2:33 pm

Re: Basic for web apps?

Post by LuCiFeR[SD] »

There is also Monkey by Mark Sibly, the author of Blitz Basic. Cross platform and able to compile for the web be it via Flash or html5.
User avatar
Kuron
Addict
Addict
Posts: 1626
Joined: Sat Oct 17, 2009 10:51 pm
Location: Pacific Northwest

Re: Basic for web apps?

Post by Kuron »

MachineCode wrote:Yep. RunBasic looks very much like what I'm after; I'll have to study it. It has all the expected BASIC keywords and constructs (it's by the makers of Liberty BASIC), and preliminary tests seem to show it's what I want.
I like Carl, but RunBaASIC suffers one of the major issues that LB does: Speed.

That said, RunBASIC is not too difficult to set up on your server (from what I remember).
Best wishes to the PB community. Thank you for the memories. ♥️
Post Reply