Skip to content

KanoComputing/kano-es6-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ES6 Server

CLI built with connect to serve development files. Named modules in js and html files will be resolved against the node_modules directory and replaced with their relative path.

Example:

In source file:

import { add } from 'math-lib/index.js';

Will be sent by this server as:

import { add } from './node_modules/math-lib/index.js';

If the module cannot be resolved, it will be left as is and the browser will throw an error about the named module.

Usage

es6-server # Serves the current directory on port 4000
es6-server ./subdir # Serves the provided directory on port 4000
es6-server --port 7000 # Serves the current directory on port 7000
es6-server --port 0 # Serves the current directory on a randomized port

About

Development server resolving modules by name with no build time

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors