UNPKG

zeanium-node

Version:

Zeanium for Node.js, simple http server and custome your business.

26 lines (22 loc) 414 B
/** * Created by yangyxu on 7/14/15. */ zn.define([ 'node:fs', 'node:path' ], function (fs, path) { return zn.Class({ properties: { env: null, argv: null }, methods: { init: function (argv){ this._argv = argv; this.exec(); }, exec: function (){ } } }); });