npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

generator-ionic-gulp-boilerplate

v0.1.0

Published

ionic gulp build boilerplate

Downloads

6

Readme

generator-ionic-gulp-boilerplate NPM version Build Status Dependency Status Coverage percentage

ionic gulp build boilerplate

Installation

First, install Yeoman and generator-ionic-gulp-boilerplate using npm (we assume you have pre-installed node.js).

npm install -g yo
npm install -g generator-ionic-gulp-boilerplate

Then generate your new project:

yo ionic-gulp-boilerplate

개요 - summary

ionic 개발을 위해서 www 폴더 내에서 직접 개발이 아닌, public folder에서 개발 후, build만 www 폴더에서 하도록 변경한 데모입니다.

In order to develop a non- ionic developed directly within the www folder , and then developed in the public folder, build just a demo to changes in the www folder.

주의점 - Precautions

현재 모든 개발 소스는 public 폴더에서 관리하고 있습니다. 기타 라이브러리는 bower로 설치하되, bower_components에서 소스를 불러오고, 이를 vender.js라는 파일로 빌드해서 사용하기 때문에, www폴더를 바라보고 있지 않습니다. (ionic도 포함입니다.)

All current sources are developed and managed in the public folder. Other libraries are installed, but a bower, recall the source from bower_components, because they use it to build a file called vender.js, do not look at the www folder. ( Including the ionic.)

설치 - Setting

ionic-gulp-boilerplate를 사용하기 위해서는 ionic이 설치되어 있어야 합니다.

If you use ionic-gulp-boilerplate, you must install ionic from npm. (version 1.0)

npm install -g ionic

npm install 및 bower install을 진행합니다.

You must commands npm install and bower install.

npm install
bower install

사용법 - Usage

1) gulp task 실행 - gulp task execution

개발 후에, public 폴더에서 www 폴더로 빌드하기 위해서, 다음과 같은 커맨드를 실행합니다.

In order to build after the development, in the public folder to the www folder , run the following commands

1.1) 개발 모드 - Development Mode

개발모드에서는 각각의 file들을 watch 상태로 확인하게 됩니다. 확인해서 변경되는 파일은 www 폴더로 build합니다.

In development mode, you will identify each file to watch status. Identified by changing the file is build into the www folder.

$gulp dev

1.2) 배포 모드 - Deployment Modes

배포모드에서는 따로 파일 변경을 감지하지 않으며, 각각의 파일에 대한 minify를 실행합니다.

In a separate deployment mode it does not detect file changes , run minify for each file.

$gulp prod

2) 실행 - Execution

2.1) browser에서 test 모드로 실행 - Running in test mode browser

브라우저에서 테스트모드로 실행합니다. (개발 중일 경우입니다.)

Run in test mode in the browser. (If you are developing .)

$ionic serve

License

MIT © KernYoo