반응형
반응형
jquerymy.js: A lightweight plugin for complex two-way data binding in real time

 

인터렉티브한 데이터 운영에 맞는 jQuery Plugin.

 

jQuery.my is a plugin that bind form controls with js data structures.

 

jquerymy.js is a lightweight jQuery plugin for real-time, complex two-way data binding. It reflects interactions between user and UI by mutating object given as data source.

 

 

jQuery.my interactive pluginjquerymy.js ‹{}› A lightweight jQuery plugin for complex two-way data binding in real time. http://jquerymy.com/

 

 

 

 

.

반응형
반응형

jQueryConfig: Optimize the size of jQuery

 

jQueryConfig lets you optimize your jQuery installation by only using the parts you need. It can save up to 35% of the overall size.

jqeuryconfig

 

Homepage: http://www.jqueryconfig.com/

 

GitHub: https://github.com/mopelabs/jqueryconfig

 

 

 

 

풀버전은 jQuery 파일을 다운받아 쓸 필요없이 필요한 부분만 들어가있는 jQuery 라이브러리 파일을 다운받아 사용할 수 있는 기능 페이지.

 

 

http://www.jqueryconfig.com/ 화면에서 사용하기 싶은 jQuery 요소만 선택하고 메일 주소 입력하면 끝.

 

 

 

 

사용할 내용만 압축해서 메일로 보내준다. 아래는 메일 내용.

 

//--- 메일 내용 시작

Hello,

 

The attachment of this email contains the jQuery build "jquery-1.11.3-55.1.12.1" as you configured it on jqueryconfig.com.

 

In addition to the jQuery core, the modules you included are:

+ event

+ css

+ ajax

+ jsonp

+ ready

+ global

+ amd

+ deferred

+ script

 

 

If you want to build another jQuery configuration, just visit jqueryconfig.com again.

 

Please, test your jQuery build before using it.

 

Best Regards,

 

The jQueryConfig team

......

 

//--- 메일 내용 중략.

 

 

 

.

 

반응형
반응형

Meteor.js   https://www.meteor.com/

 

The JavaScript App Platform

 

 

https://www.meteor.com/install

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

.

반응형
반응형

node.js - 윈도우 설치하기

 

http://nodejs.org/download 에 가서 Windows Installer (.msi)를 받아서 설치.

 

https://nodejs.org/en/

 

안정버전 V5.0으로 다운받아서 설치.

 

설치 후 node.js 콘솔창에서 입력도 가능하고,  .js 파일 생성 후

도스 창에서 $node 해당파일.js 를 실행 할 수 있다.

 

콘솔창을 종료시키고 싶으면 Ctrl + C 두 번!

 

 

아니면 Express를 사용해서 설치 가능하다.  http://expressjs.com/ 

 

Installing

Assuming you’ve already installed Node.js, create a directory to hold your application, and make that your working directory.

$ mkdir myapp
$ cd myapp

Use the npm init command to create a package.json file for your application. For more information on how package.json works, see Specifics of npm’s package.json handling.

$ npm init

This command will prompt your for a number of things such as the name and version of your application. For now, you can simply hit RETURN to accept the defaults for most of them, except for:

entry point: (index.js)

Enter app.js or whatever you want the name of the main file to be. If you want it to be index.js, hit RETURN to accept the suggested default file name.

Now install Express in the app directory and save it in the dependencies list:

$ npm install express --save

To install Express temporarily, and not add it to the dependencies list, omit the --save option:

$ npm install express

Node modules installed with the --save option are added to the dependencies list in the package.json file. Then usingnpm install in the app directory will automatically install modules in the dependencies list.

 

 

 

 

 

반응형
반응형

Simple.Timer: A jQuery timer plugin

 

타이머

 

 

Simple.Timer is a jQuery countdown timer plugin. It’s easy to configure and you can customize the behavior upon the clock running out.

simpletimer

 

 

 

 

 

 

 

 

 

 

.

 

 

반응형
반응형

 

 

jQuery("[name='chk_det']").is(':checked');

 

 

 

 

if( jQuery("[name='chk_det']").is(':checked') == true ){

    // true

}

반응형

+ Recent posts