balls icon indicating copy to clipboard operation
balls copied to clipboard

please post some example

Open seletz opened this issue 12 years ago • 6 comments

While reading the source is fun and entertaining, having an actual example would be very helpful for us non-bash-$deities.

seletz avatar Jul 19 '11 19:07 seletz

We're working on some examples and tutorials, but for fun you can try out esh. For example:

# test.html.esh
<html>
  <head>
    <title><%= "$title" %></title>
  </head>
  <body>
    <ul>
      <%- for i in {1..10}; do -%>
        <li>Here's number <%= "$i" %>!
      <%- done -%>
    </ul>
  </body>
</html>

And then run

% ./bin/esh test.html.esh > test.html.esh.o # this will be slowish
% title=FOOBAR bash test.html.esh.o # this will be lightning fast

Voila!

jneen avatar Jul 20 '11 00:07 jneen

I'm going to try to have an example blog written in BoB by the end of the weekend. We didn't actually intend to post this before having more work into this project, but reacted to the OOP bash post on Hacker News.

Voronoff avatar Jul 20 '11 01:07 Voronoff

+1

lest avatar Jul 25 '11 15:07 lest

@Voronoff still nothing? :)

mfalesni avatar Feb 27 '15 13:02 mfalesni

I liked very much when I knew that there is a project for a Web application framework like Ruby on Rails and Groovy on Grails: Bash on Balls! As @seletz said, reading the source code is interesting, Balls apparently creates a web server and renders HTML pages with server-side scripting. @jneen You really made a nice work!

I'm a Linux user that learned Bash language some years ago. I've made some relatively complex desktop applications using Bash and YAD/zenity for GUI. Although Balls is a really useful and inovative software, its GitHub repository and source code doesn't encourage programmers to use it.

  • The README file doesn't have good pratices for writing READMEs (some of them here and here), it's only a simple and informal description of the project;
  • The source code of balls doesn't have any comments (except code snippets), Bash language itself doesn't have good readability.

In short, we can not know how to use Balls, to create Web applications properly by the way it is, and I reinforce the request of @seletz to post some example of complete usage of Balls and all its features.

I can contribute to this nice project, but as I said, I don't know how to use it. I have some ideas of implementing a Bash framework with MVC architectural pattern with similar usage in the command line like Grails:

balls create-app helloworld balls create-controller hello (would create a file called HelloController.sh) balls run-app or balls run-app --server-port=8090 (to run the application in a web server)

gustavomdsantos avatar Apr 13 '16 14:04 gustavomdsantos

+1

davidmyersdev avatar Dec 01 '16 18:12 davidmyersdev