├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json ├── template-deno-oak ├── .env ├── README.md ├── _gitignore ├── app.ts ├── deps.ts └── routes.ts ├── template-deno-vscode-cmd ├── .vscode │ └── typescript.code-snippets └── cmd.ts ├── template-react-dva-ts ├── README.md ├── _gitignore ├── index.html ├── package.json ├── src │ ├── core │ │ ├── dva.ts │ │ └── init.tsx │ ├── example │ │ ├── Layout.tsx │ │ ├── Login.tsx │ │ ├── Protected.tsx │ │ ├── SignOut.tsx │ │ └── style.css │ ├── global.css │ ├── main.tsx │ ├── models │ │ ├── global.ts │ │ └── index.ts │ ├── react-app-env.d.ts │ ├── router │ │ ├── RouteWithSubRoutes.tsx │ │ ├── Router.tsx │ │ └── types.ts │ └── routes.ts ├── tsconfig.json └── vite.config.ts ├── template-wasm-react ├── README.md ├── _gitignore ├── index.html ├── package.json ├── public │ └── favicon.ico ├── src │ ├── App.css │ ├── App.tsx │ ├── index.css │ ├── logo.svg │ ├── main.tsx │ └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts └── template-wasm-vue ├── README.md ├── _gitignore ├── index.html ├── package.json ├── public └── favicon.ico ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── HelloWasm.vue │ └── HelloWorld.vue ├── main.ts ├── shims-vue.d.ts └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/package.json -------------------------------------------------------------------------------- /template-deno-oak/.env: -------------------------------------------------------------------------------- 1 | PORT=6300 -------------------------------------------------------------------------------- /template-deno-oak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-deno-oak/README.md -------------------------------------------------------------------------------- /template-deno-oak/_gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /template-deno-oak/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-deno-oak/app.ts -------------------------------------------------------------------------------- /template-deno-oak/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-deno-oak/deps.ts -------------------------------------------------------------------------------- /template-deno-oak/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-deno-oak/routes.ts -------------------------------------------------------------------------------- /template-deno-vscode-cmd/.vscode/typescript.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-deno-vscode-cmd/.vscode/typescript.code-snippets -------------------------------------------------------------------------------- /template-deno-vscode-cmd/cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-deno-vscode-cmd/cmd.ts -------------------------------------------------------------------------------- /template-react-dva-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/README.md -------------------------------------------------------------------------------- /template-react-dva-ts/_gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | *.local 5 | -------------------------------------------------------------------------------- /template-react-dva-ts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/index.html -------------------------------------------------------------------------------- /template-react-dva-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/package.json -------------------------------------------------------------------------------- /template-react-dva-ts/src/core/dva.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/core/dva.ts -------------------------------------------------------------------------------- /template-react-dva-ts/src/core/init.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/core/init.tsx -------------------------------------------------------------------------------- /template-react-dva-ts/src/example/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/example/Layout.tsx -------------------------------------------------------------------------------- /template-react-dva-ts/src/example/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/example/Login.tsx -------------------------------------------------------------------------------- /template-react-dva-ts/src/example/Protected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/example/Protected.tsx -------------------------------------------------------------------------------- /template-react-dva-ts/src/example/SignOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/example/SignOut.tsx -------------------------------------------------------------------------------- /template-react-dva-ts/src/example/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/example/style.css -------------------------------------------------------------------------------- /template-react-dva-ts/src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/global.css -------------------------------------------------------------------------------- /template-react-dva-ts/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/main.tsx -------------------------------------------------------------------------------- /template-react-dva-ts/src/models/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/models/global.ts -------------------------------------------------------------------------------- /template-react-dva-ts/src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/models/index.ts -------------------------------------------------------------------------------- /template-react-dva-ts/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/react-app-env.d.ts -------------------------------------------------------------------------------- /template-react-dva-ts/src/router/RouteWithSubRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/router/RouteWithSubRoutes.tsx -------------------------------------------------------------------------------- /template-react-dva-ts/src/router/Router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/router/Router.tsx -------------------------------------------------------------------------------- /template-react-dva-ts/src/router/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/router/types.ts -------------------------------------------------------------------------------- /template-react-dva-ts/src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/src/routes.ts -------------------------------------------------------------------------------- /template-react-dva-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/tsconfig.json -------------------------------------------------------------------------------- /template-react-dva-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-react-dva-ts/vite.config.ts -------------------------------------------------------------------------------- /template-wasm-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/README.md -------------------------------------------------------------------------------- /template-wasm-react/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/_gitignore -------------------------------------------------------------------------------- /template-wasm-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/index.html -------------------------------------------------------------------------------- /template-wasm-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/package.json -------------------------------------------------------------------------------- /template-wasm-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/public/favicon.ico -------------------------------------------------------------------------------- /template-wasm-react/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/src/App.css -------------------------------------------------------------------------------- /template-wasm-react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/src/App.tsx -------------------------------------------------------------------------------- /template-wasm-react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/src/index.css -------------------------------------------------------------------------------- /template-wasm-react/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/src/logo.svg -------------------------------------------------------------------------------- /template-wasm-react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/src/main.tsx -------------------------------------------------------------------------------- /template-wasm-react/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /template-wasm-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/tsconfig.json -------------------------------------------------------------------------------- /template-wasm-react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-react/vite.config.ts -------------------------------------------------------------------------------- /template-wasm-vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/README.md -------------------------------------------------------------------------------- /template-wasm-vue/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/_gitignore -------------------------------------------------------------------------------- /template-wasm-vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/index.html -------------------------------------------------------------------------------- /template-wasm-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/package.json -------------------------------------------------------------------------------- /template-wasm-vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/public/favicon.ico -------------------------------------------------------------------------------- /template-wasm-vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/src/App.vue -------------------------------------------------------------------------------- /template-wasm-vue/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/src/assets/logo.png -------------------------------------------------------------------------------- /template-wasm-vue/src/components/HelloWasm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/src/components/HelloWasm.vue -------------------------------------------------------------------------------- /template-wasm-vue/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /template-wasm-vue/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/src/main.ts -------------------------------------------------------------------------------- /template-wasm-vue/src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/src/shims-vue.d.ts -------------------------------------------------------------------------------- /template-wasm-vue/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /template-wasm-vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/tsconfig.json -------------------------------------------------------------------------------- /template-wasm-vue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-xc-app/HEAD/template-wasm-vue/vite.config.ts --------------------------------------------------------------------------------