Socket
Socket
Sign inDemoInstall

generator-ionstarter

Package Overview
Dependencies
452
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    generator-ionstarter

The Best Ionic v1.x starter template


Version published
Weekly downloads
1
Maintainers
1
Install size
59.2 MB
Created
Weekly downloads
 

Readme

Source

#The Best Ionic v1.x starter template

Ionic Framework + Gulp

Reinventing the wheel, again! Sorry Ionic Team... but there are many noobs learning in Youtube!

Are you a noob? Use this template.

Are you a master? Shut up and use this template! Talk is cheap, show me the code (Pull Request).

#Introduction

You need to obfuscate your code and reduce the size of your mobile applications. With this project you can work with Gulp in the best way, allowing improve your development workflow. This project seeks to improve the following tasks:

  • Design your application with a maintainable code using Sass and writing less code using Autoprefixer. Concatenate and Minify styles in a stylesheet.
  • Concatenate and Uglify javascript files using Source maps to debug the code easily.
  • Compress images to reduce the size of your application.
  • Compress html templates, respecting your structure.
  • Clean unnecessary files downloaded with Bower.
  • Use CSS animations with Animate.css.
  • Use SQLite with a service pattern. You can use Pre-filled databases.

Demo

Do you want to see this starter in action? Visit https://jdnichollsc.github.io/Ionic-Starter-Template/ yay!

Automatically deployed to GitHub Pages using Gulp - Check the last task into gulpfile.js

#Projects using this template

Do you have a project using this template? Let me know to share it with everyone!

#Instructions

  1. Download this template.
  2. Execute the command npm install
  3. Execute the command gulp
  4. Run Ionic:
    • ionic serve to test on the browser (Gulp is running by default).
    • ionic run android --livereload to test on the device.
  5. Modify this template and create your hybrid mobile app.

#Template Structure

PathExplanation
./app/img/Images in your app.
./app/js/Scripts (Controllers, Services, Directives, etc).
./app/scss/The styles of your app using Sass.
./app/templates/Views in your app. (Only html files)
./app/index.htmlThe init page.
./www/css/Other css styles like Animate.css, etc.
./www/libDownload scripts using bower.

#Using bower to download libraries (npm preen included)

  • Download the script. Eg: bower install ionic-datepicker --save
  • Add the path of the files that you will use in bower.json from www/lib. Eg:
"preen": {
	//... More libraries
	"ionic-datepicker": [
		"dist/*.js"
		//Other files and folders will be deleted to reduce the size of your app
	]
}
  • Run gulp in the CLI. Eg: gulp or gulp lib
  • That's all, folks!!

#Animate elements using Animate.css

  • Do you want to animate Modals? This template have an example. More examples here
//Using the Modals service in this template
Modals.openModal($scope, 'templates/modals/users.html', 'animated rotateInDownLeft');
  • Do you want to animate Popups and other elements? See an example:
$ionicPopup.alert({
	title: 'Hello World',
	template: 'This is the best template to start with Ionic Framework!',
	cssClass: 'animated bounceInDown'
});

#SQLite databases on Android, iOS and Windows (Using cordova-sqlite-ext plugin) This template include an example (pre-populated database), you can test in the browser using Google Chrome or in your Device.

Cordova SQLite

  • Debug in the browser: Test using the ./app/js/queries.js file to create your queries (Drop tables, create tables, insert data, etc).
  • Debug in the device: Test using the ./www/pre.db file, you can edit the database using DB Browser for SQLite

###Note: If you don't want to use SQLite, you must perform the following steps:

  1. Remove ./www/pre.db file.
  2. Remove ./app/js/queries.js file.
  3. Remove ./app/js/services/sqlite.js file.
  4. Uninstall the plugin using the CLI: ionic plugin rm cordova-sqlite-ext --save
  5. Remove the following line from ./app/js/app.js file:
$sqliteService.preloadDataBase(true);

#Ionic Tips

  • Ionic View LifeCycle: More here
$scope.$on('$ionicView.beforeEnter', function(){
  alert("Before to enter to the view");
});
$scope.$on('$ionicView.afterEnter', function(){
  alert("After to enter to the view");
});
  • Reload the current state:
$state.go($state.current, {}, {reload: true});
  • Disable the back option before to navigate to other state:
$ionicHistory.nextViewOptions({
    disableBack: true,
    disableAnimate : true,
    historyRoot  : true
});
  • Clear the cache:
$ionicHistory.clearCache();
  • Clear the history:
$ionicHistory.clearHistory();
  • Change the direction before to navigate to other state:
$ionicViewSwitcher.nextDirection('back');
  • Navigate to other state:
$state.go("app.login");
  • Disable the drag to open the side menu:
$ionicSideMenuDelegate.canDragContent(false);
  • Check the current platform
var deviceInformation = ionic.Platform.device();

var isWebView = ionic.Platform.isWebView();
var isIPad = ionic.Platform.isIPad();
var isIOS = ionic.Platform.isIOS();
var isAndroid = ionic.Platform.isAndroid();
var isWindowsPhone = ionic.Platform.isWindowsPhone();

var currentPlatform = ionic.Platform.platform();
var currentPlatformVersion = ionic.Platform.version();
  • Disabling the tap system (To disable the tap for an element and all of its children elements)
<div data-tap-disabled="true">
    <div id="google-map"></div>
</div>
  • Using Ionic gestures with options from Angular Directives
$ionicGesture.on('hold', function (e) {
  //Code...
}, element, { hold_threshold: 20 });
ionic.trigger("hold", { target: document.getElementsByClassName("item")[0] });
  • Execute when device is ready
ionic.Platform.ready(function(){
  //Code...
});

###Global configuration:

  • Enable the native scrolling (Enable or Disable jsScrolling):
$ionicConfigProvider.scrolling.jsScrolling(false);
  • Set the Maximum number of view elements to cache in the DOM:
$ionicConfigProvider.views.maxCache(5);
  • Center align the title in the navBar:
$ionicConfigProvider.navBar.alignTitle('center');
  • Disable swipeback on iOS:
$ionicConfigProvider.views.swipeBackEnabled(false);
  • Set the back button text to empty:
$ionicConfigProvider.backButton.previousTitleText(false).text('');
  • Change Ionic gestures options:
ionic.Gestures.gestures.Hold.defaults.hold_threshold = 20;
  • Platform Customization

    PlatformCSS Class
    Browserplatform-browser
    Cordovaplatform-cordova
    Webviewplatform-webview
    iOSplatform-ios
    iPadplatform-ipad
    Androidplatform-android
    Windows Phoneplatform-windowsphone
    • Dynamically Loading Templates
    .state('tab', {
      templateUrl: function() {
        if (ionic.Platform.isAndroid()) {
            return  "templates/home-android.html";
        }
        return "templates/home.html";
      }
    });
    

#Crosswalk Improve the performance of your HTML, CSS, and JavaScript if is required.

CommandAction
ionic browser listShow all the browsers available by platform
ionic browser rm crosswalkRemove a browser
ionic browser add crosswalkInstall the Chromium browser for Android
ionic browser add crosswalk@10.39.235.15Specifies a version of Chromium
ionic browser add crosswalk-liteInstall the Crosswalk lite version
ionic browser revert androidRemove any custom browser that was installed for the platform by replacing it with the system default browser

#npm commands

CommandAction
npm i ionic cordova bower gulp -gInstall Ionic, Cordova, Bower and Gulp packages globally
npm cache cleanRemove the cache to force update the packages. Useful to solve npm issues using the CLI.

#Ionic commands

CommandAction
ionic loginTo get logged in the CLI and use the Ionic services
ionic uploadUpload your app to Ionic repository and debug remotely (Your clients) using the useful Ionic View App
ionic serveTest on the browser
ionic serve --labTest on the browser iOS and Android version
ionic lib updateUpdate Ionic library files
ionic resourcesGenerate icons and splash screens. The images are located in ./resources/ directory. More info here.
ionic resources --iconGenerate only the icons. icon.png, icon.psd or icon.ai is located in ./resources/ directory
ionic resources --splashGenerate only the splash screens. splash.png, splash.psd or splash.ai is located in ./resources/ directory
ionic resources ios --iconGenerate icons per platform

#Cordova commands

CommandAction
cordova platform add androidAdd the platform to build your app. android - ios - windows
cordova platform rm androidRemove the platform
cordova plugin add git_url --saveAdd a plugin to use native capabilities. Native Devs are your friends
cordova plugin listSee the plugins that you're using. Find more here!
cordova plugin rm plugin_name --saveRemove a plugin
cordova build windows -- --appx=8.1-win --archs="x86"Build the app to Windows (Open the Solution platforms/windows/*.sln on Visual Studio)

#Tools

NameDescription
Visual Studio CodeBuild and debug your app using a extension
GapDebugOnly debug in the device
GenyMotionBetter Android Emulation

#Visual Studio Code commands and shortcuts

Command/ShortcutAction
code .Open the editor from CLI
F1Open the Command Palette
Ctrl + Shift + NOpen other Visual Studio Code instance
Ctrl + }Toogle comment code
Ctrl + ñOpen the Integrated Terminal

#Sign to Android (Commands)

  1. cordova build --release android
  2. keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
  3. jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore HelloWorld-release-unsigned.apk alias_name
  4. zipalign -v 4 HelloWorld-release-unsigned.apk HelloWorld.apk

#Links

Your code is mine!

#Personal comments

  • Ionic, seriously? The cache is the best... but, How is possible to know if a specific view is cached? (From a directive)

  • Microsoft, seriously? Help to improve existing cordova plugins instead of create new plugins only for Windows platform!

  • Apple, seriously? Thanks for nothing! I need a MAC or the help of a friend to build for iOS... Are we playing Who Wants to be a Millionaire?

Happy coding

Made with <3

Keywords

FAQs

Last updated on 24 Oct 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc