加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
initapp.bat 895 Bytes
一键复制 编辑 原始数据 按行查看 历史
yulifu 提交于 2017-03-01 12:11 . change initapp script
:: This file use to make base app structor
@echo off
set /p val="Please input the app path: "
if not exist "%val%" md "%val%"
set controllerPath=%val%/app/controllers/index
set viewPath=%val%/app/views/index
md "%controllerPath%"
md "%viewPath%"
:: init file
set c=%controllerPath%/IndexController.js
echo 'use strict';> %c%
echo var YNode = require('ynode');>> %c%
echo class IndexController extends YNode.WebController {>> %c%
echo run(req, res) {>> %c%
echo res.end('hello ynode');>> %c%
echo }>> %c%
echo }>> %c%
echo module.exports = IndexController;>> %c%
set v=%val%/index.js
echo var YNode = require('ynode');> %v%
echo var app = new YNode({>> %v%
echo 'id': 1,>> %v%
echo 'debug': true,>> %v%
echo 'appPath': __dirname + '/app',>> %v%
echo 'assets': 'public'>> %v%
echo });>> %v%
echo app.listen(8090, function(){console.log('listen on 8090');});>> %v%
echo done
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化