Web 编程脚本 Hoplon

码农软件 · 软件分类 · 脚本编程语言 · 2019-07-31 13:43:37

软件介绍

Hoplon 是 Web 编程更简单的方式,该项目包含 Web 编程的一些方法和库。采用 Clojure 和 ClojureScript 编写应用。

ClojureScript 代码示例:

(page "foo/bar.html"
  (:require [my.lib :as lib]))(defc clicks 0)(html
  (head
    (title "Hello World")
    (link :rel "stylesheet" :href "css/main.css"))
  (body
    (lib/heading-large "Hello, world!")
    (p (text "You've clicked ~{clicks} times."))
    (button :on-click #(swap! clicks inc) "Click me!")))

对应的 HTML 代码:

<script type="text/hoplon">
  (page "foo/bar.html"
    (:require [my.lib :as lib]))

  (defc clicks 0)</script><html>
  <head>
    <title>Hello World</title>
    <link rel="stylesheet" href="css/main.css">
  </head>
  <body>
    <lib.heading-large>Hello, world!</lib.heading-large>
    <p><text>You've clicked ~{clicks} times.</text></p>
    <button on-click="{{ #(swap! clicks inc) }}">
      Click me!    </button>
  </body></html>

本文地址:https://codercto.com/soft/d/11339.html

Lighttpd

Lighttpd

Andre Bogus / Packt Publishing / 2008-10 / 39.99

This is your fast guide to getting started and getting inside the Lighttpd web server. Written from a developer's perspective, this book helps you understand Lighttpd, and get it set up as securely an......一起来看看 《Lighttpd》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

随机密码生成器
随机密码生成器

多种字符组合密码

MD5 加密
MD5 加密

MD5 加密工具