package links

  1. Overview
  2. Docs
Links is a functional programming language designed to make web programming easier.

Install

Dune Dependency

Authors

Maintainers

Sources

gorgie_0_6_1.tar.gz
sha256=24d521718fe1b1a4af264d247e31023e6f454a6ce56fc4c99913bcea8dbd0afd
md5=90fbdcd1574e4b880d347b1463266bc9

README.html

README

# Installing Links

Links requires OCaml 4.04.0. We recommend installing Links using the
OPAM tool, available from:

  https://opam.ocaml.org/

If you wish to use Links' database functionality, you should first
install PostgreSQL, the supported DBMS.

You can then install Links simply by issuing the command:

  $ opam install postgresql links

Alternatively, if you don't have PostgreSQL installed then do:

  $ opam install links

This will put Links and its files into your OPAM switch, typically
located at $HOME/.opam/SWITCH_VERSION, where $HOME is your home
directory and SWITCH_VERSION is the compiler version that you're using
(eg. 4.04.0).  Links files install to several locations inside an OPAM
switch:

* The executable is called `linx` and goes into `bin`
* The Links prelude and JavaScript libraries go into `lib/links`
* The example Links programs go into `share/links`
* Links configuration file goes into `etc/links`

# Running Links.

Beginning with the Gorgie (0.6) release, Links supports two methods of running
applications: either via the standalone application server, or via the CGI
interpreter used in previous releases. The executable name is `linx`.

## Application Server

# Examples (without a database)

To run the examples that don't use the database with the Links
application server go into share/links directory inside your OPAM
switch and invoke the following command:

  linx -m --path=examples:examples/games
    examples/webserver/examples-nodb.links

(This version just displays the source code for examples that use the
database.)

The default port is 8080, so you should now be able to access the
examples by pointing your browser at:

  http://localhost:8080/examples/

# Examples (with a database)

To run the examples using the Links application server go into
share/links directory inside your OPAM switch and invoke the following
command:

  linx -m
    --path=examples:examples/games:examples/dictionary
    examples/webserver/examples.links

* The -m flag enables support for Links' module system, new in Gorgie.
* The --path flag says that files can be found in the following directories:
  - examples
  - examples/games
  - examples/dictionary
* Finally examples/webserver/examples.links is the file to run, which imports
  the example modules and sets up the application server.

But first you need to do a few things.

  1) By default Links uses a config file inside etc/links directory.  Use
     --config=/custom/config/file flag to use a different configuration file.

  2) The default config file should contain paths to JavaScript libraries:

       jsliburl=/lib/
       jslibdir=SWITCH_PATH/lib/links/js

     Where SWITCH_PATH is the actual path on your system. To use
     database examples you need to add a database configuration to the
     config file:

       database_driver=postgresql
       database_args=:5432:fred:

     The database user fred should exist. With postgres, perhaps the
     easiest way to do this is to tie fred to your unix username and
     then no separate authentication is required.

  3) Create appropriate databases. Scripts are included to populate
     tables for some of the examples, but not all of them. We also
     don't have the actual data. We will make sample database dumps
     available for the next point release.

## Documentation

Some (outdated) documentation can be built by running the Makefile in
the doc directory.

Some very incomplete documentation is available on the links wiki:

  https://github.com/links-lang/links/wiki
OCaml

Innovation. Community. Security.