0.1.12 • Published 3 years ago

@idyllic/server v0.1.12

Weekly downloads
476
License
Apache-2.0
Repository
github
Last release
3 years ago

@idyllic/server

Web server module that complements the compiler for hosting.

Usage

import { IdyllicCompiler } from '@idyllic/compiler'
import { IdyllicServer } from '@idyllic/server'
;(async () => {
	const compiled = await (await IdyllicCompiler.fromFile('spec.idl')).compile()
	const server = new IdyllicServer(compiled)

	server.start(3000, () => {
		console.log('Idyllic server started!')
	})
})()

Structure

index.ts is where the entire implementation lives; the code behind it isn't too difficult to understand, but as we continue down the roadmap, it'll steadily become more and more complex.

0.1.11

3 years ago

0.1.12

3 years ago

0.1.10

3 years ago

0.1.8

3 years ago

0.1.9

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago