반응형
반응형

asp - JSON  : http://www.aspjson.com/

 

ASPJSON is a free to use project for generating and reading JSON data into a classic ASP object.

The class can be used for reading a string of JSON data as well as writing JSON output from an AJAX file.
Below are 2 simple examples of both.

 

<!--#include virtual="/aspJSON1.17.asp" -->
<%
Set oJSON = New aspJSON

'Load JSON string
oJSON.loadJSON(jsonstring)

'Get single value
Response.Write oJSON.data("firstName") & "<br>"

'Loop through collection
For Each phonenr In oJSON.data("phoneNumber")
    Set this = oJSON.data("phoneNumber").item(phonenr)
    Response.Write _
    this.item("type") & ": " & _
    this.item("number") & "<br>"
Next

'Update/Add value
oJSON.data("firstName") = "James"

'Return json string
Response.Write oJSON.JSONoutput()
%>

 

 

[INPUT]
{ "firstName": "John", "lastName" : "Smith", "age" : 25, "address" : { "streetAddress": "21 2nd Street", "city" : "New York", "state" : "NY", "postalCode" : "10021" }, "phoneNumber": [ { "type" : "home", "number": "212 555-1234" }, { "type" : "fax", "number": "646 555-4567" } ] }

 

 

 

 

 

반응형
반응형

Duo.js: A next-gen front-end package manager

Duo.js is a next generation package manager for the front end that blends ideas from Component, Browserify, and Go. It makes writing and organizing front-end code fast and pain-free.

duo.js

 

 

A next-generation package manager for the front-end 

 

Duo is a next-generation package manager that blends the best ideas from Component, Browserify andGo to make organizing and writing front-end code quick and painless.

Features

  1. has first-class support for Javascript, HTML and CSS
  2. exposes a unix-y command line interface
  3. pulls source directly from GitHub with semantic versioning
  4. supports source transforms, like Coffeescript or Sass
  5. does not require a manifest

 

 

 

 

 

 

반응형
반응형

Chart & javascript - C3.js: A D3 reusable chart library

C3.js is a D3-based reusable chart library that doesn’t require you to write any actual D3 code. It’s fully controllable and easy to customize, too.

c3

 

 

c3 Build Status

c3 is a D3-based reusable chart library that enables deeper integration of charts into web applications.

More information is here: http://c3js.org

Tutorial and Examples

Another samples are included in this repository:

And you can run these samples as:

$ cd c3/htdocs
$ python -m SimpleHTTPServer 8080

Forum

Now you can ask anything in this forum:

Playground

Please fork this fiddle:

 

 

반응형
반응형

http://ninjamock.com/  [MockUp] http://ninjamock.com/ - Mockup 도구

 

 

 

반응형
반응형

구글 폴리머 프로젝트  


http://www.polymer-project.org/


https://github.com/polymer






반응형
반응형

Blast.js: Make text manipulable

Blast.js makes it easy to separate your text to make it manipulable, with four delimiters built-in: character, word, sentence, and element. The elements generated can be accessed via JavaScript or CSS.

blast.js


Blast (1.1.1)

Docs
http://julian.com/research/blast

Quickstart

npm install blast-text
bower install blast-text

Frameworks
Both jQuery and Zepto are fully supported.

Browsers
All major browsers are supported. Back to IE6.





반응형

+ Recent posts