Search found 1 match
- Wed Dec 27, 2017 2:31 pm
- Forum: Common Lisp
- Topic: WS and static content in hunchentoot
- Replies: 0
- Views: 89797
WS and static content in hunchentoot
Is it possible to serve both static content and websockets? (defpackage :hello (:use :common-lisp :websocket-driver :clack) (:export :start :halt)) (in-package :hello) ; (ql:quickload '(:websocket-driver :clack :cl-json)) (defvar *handler*) (defvar *echo-server* (lambda (env) (let ((ws (make-server ...