| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
An application using Apache Cordova, Ionic Framework, and Typescript. Currently supporting iOS, Android and Windows 10.
To learn more about Tools for Apache Cordova, visit this link.
With VS Code:
** Note: To improve your Cordova development workflow, install VS Code Cordova extension.
ext install cordova-tools
With Visual Studio:
ionic-typescript-tabs/ ├── app/ * Working directory for TypeScript files │ ├── app.ts * Main Application configuration │ ├── controllers.ts * App logic │ └── services.ts * Helper Service methods │ ├── node_modules/ * Node dependencies | ├── platforms/ * Cordova generated native platform code | ├── plugins/ * Cordova native plugins go | ├── resources/ * Images for splash screens and icons | ├── typings/ * Contains all typings for this project | ├── www/ * Folder that is copied over to platforms www directory │ │ │ ├── js/ * Contains transpiled JS files from TS files │ │ ├── app.js │ │ ├── controllers.js │ │ └── services.js │ │ │ ├── css/ * Compiled CSS │ │ │ ├── img/ * App images │ │ │ ├── lib/ * Dependencies from bower install │ │ │ └── index.html * Main entry point | ├── .editorconfig * Defines coding styles between editors ├── .gitignore * Example git ignore file ├── config.xml * Cordova configuration file ├── gulpfile.js * Contains gulp tasks for compiling ts files, scss files and more.. ├── ionic.project * Ionic configuration file ├── package.json * Our javascript dependencies ├── ionic-typescript-tabs.sln * VS solution ├── ionic-typescript-tabs.jsproj ├── ionic-typescript-tabs.jsproj.user └── README.md * This file
| Back | FazBrowse Home | New Git URL |