What is '/zappa/full.js'
I have some code with a /zappa/zappa.js file (ethercalc) and the tutorial has /zappa/full.js and there is even a /zappa/simple.js in the examples.
What are these files, what is the difference, any docs?
e.g. /zappa/full.js from https://zappajs.github.io/zappajs/docs/crashcourse
@get '/': ->
@render 'index'
{doctype,html,head,title,script,body} = @teacup
@view index: ->
doctype 5
html ->
head ->
title 'Client-side zappa'
script src: '/zappa/full.js'
script src: '/index.js'
body ''
Also I get a not found error with /zappa/full.js and have no idea if I can use /zappa/zappa.js instead.