PicoLisp Blog

PicoLisp Blog

Follow
homeGetting StartedWeb AppsDatabaseMobile AppsPilogPicoLisp Explored
Series

Web Application Development

In this series, we will show how to create a basic web application in PicoLisp.

Articles in this series

Web Application Programming in PicoLisp

Oct 1, 20214 min read

Up to now, all scripts we have discussed were fairly academic. They are nice to get solid PicoLisp skills, and to get the basics right. Nevertheless,...

Web Application Programming in PicoLisp

Web Application Programming in PicoLisp: How it works

Oct 2, 20215 min read

Welcome back to the Web Application tutorial. Today we will discuss how the PicoLisp interpreter actually transforms a script to something the browser...

Web Application Programming in PicoLisp: How it works

Web Application Programming in PicoLisp: Setting up the server

Oct 3, 20213 min read

Now that we know how to create a HTTP-response out of a PicoLisp script, let's set up a server and try it out. What actually is a server? When...

Web Application Programming in PicoLisp: Setting up the server

Web Application Programming in PicoLisp: Adding HTML Tags

Oct 4, 20214 min read

In the last post, we started the server and hosted a minimal "Hello World"-script. The resulting HTML source consisted of a single <body> tag. Today...

Web Application Programming in PicoLisp: Adding HTML Tags

Web Application Programming in PicoLisp: Adding CSS

Oct 5, 20215 min read

In the last post, we expanded our "Hello World" example by some tags. However, the page still looks really boring. We need to add some...

Web Application Programming in PicoLisp: Adding CSS

Web Application Programming in PicoLisp: Creating HTML Forms, Part 1

Oct 6, 20216 min read

Today we will show how to create a simple HTML form in PicoLisp. User Interaction in HTML If a website purely works in HTML, the user interface can...

Web Application Programming in PicoLisp: Creating HTML Forms, Part 1