├── gulp-autoRefresh ├── node_modules │ ├── mime │ │ ├── .npmignore │ │ ├── cli.js │ │ └── build │ │ │ └── build.js │ ├── watch │ │ └── test │ │ │ └── d │ │ │ ├── d │ │ │ └── t │ │ │ └── t │ ├── extend │ │ └── .npmignore │ ├── mini-lr │ │ ├── tmp │ │ │ └── .gitkeep │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── scripts │ │ │ ├── post-change │ │ │ └── phantom-stop │ │ └── examples │ │ │ └── express │ │ │ ├── styles │ │ │ └── site.css │ │ │ └── package.json │ ├── tiny-lr │ │ ├── tmp │ │ │ └── .gitkeep │ │ ├── node_modules │ │ │ ├── bytes │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ └── component.json │ │ │ ├── body-parser │ │ │ │ └── node_modules │ │ │ │ │ └── qs │ │ │ │ │ ├── .jshintignore │ │ │ │ │ ├── index.js │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ │ └── .npmignore │ │ │ ├── raw-body │ │ │ │ └── .npmignore │ │ │ ├── iconv-lite │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ └── mime-db │ │ │ │ └── index.js │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── scripts │ │ │ ├── post-change │ │ │ └── phantom-stop │ │ └── examples │ │ │ └── express │ │ │ ├── styles │ │ │ └── site.css │ │ │ └── package.json │ ├── livereload-js │ │ ├── lib │ │ │ └── .keepme │ │ └── .npmignore │ ├── open │ │ ├── .npmignore │ │ └── .jshintignore │ ├── rechoir │ │ ├── .npmignore │ │ └── lib │ │ │ ├── extension.js │ │ │ ├── normalize.js │ │ │ └── register.js │ ├── resolve │ │ ├── test │ │ │ ├── resolver │ │ │ │ ├── mug.js │ │ │ │ ├── baz │ │ │ │ │ ├── doom.js │ │ │ │ │ ├── quux.js │ │ │ │ │ └── package.json │ │ │ │ ├── mug.coffee │ │ │ │ ├── cup.coffee │ │ │ │ ├── other_path │ │ │ │ │ ├── root.js │ │ │ │ │ └── lib │ │ │ │ │ │ └── other-lib.js │ │ │ │ ├── foo.js │ │ │ │ ├── punycode │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── punycode │ │ │ │ │ │ └── index.js │ │ │ │ ├── quux │ │ │ │ │ └── foo │ │ │ │ │ │ └── index.js │ │ │ │ ├── bar │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── foo │ │ │ │ │ │ └── index.js │ │ │ │ ├── biz │ │ │ │ │ └── node_modules │ │ │ │ │ │ ├── tiv │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── garply │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── grux │ │ │ │ │ │ └── index.js │ │ │ │ ├── incorrect_main │ │ │ │ │ ├── package.json │ │ │ │ │ └── index.js │ │ │ │ └── without_basedir │ │ │ │ │ ├── main.js │ │ │ │ │ └── node_modules │ │ │ │ │ └── mymodule.js │ │ │ ├── pathfilter │ │ │ │ └── deep_ref │ │ │ │ │ ├── main.js │ │ │ │ │ └── node_modules │ │ │ │ │ └── deep │ │ │ │ │ ├── alt.js │ │ │ │ │ ├── ref.js │ │ │ │ │ ├── deeper │ │ │ │ │ └── ref.js │ │ │ │ │ └── package.json │ │ │ ├── precedence │ │ │ │ ├── aaa.js │ │ │ │ ├── bbb.js │ │ │ │ ├── aaa │ │ │ │ │ ├── index.js │ │ │ │ │ └── main.js │ │ │ │ └── bbb │ │ │ │ │ └── main.js │ │ │ ├── subdirs │ │ │ │ └── node_modules │ │ │ │ │ └── a │ │ │ │ │ ├── b │ │ │ │ │ └── c │ │ │ │ │ │ └── x.json │ │ │ │ │ └── package.json │ │ │ ├── dotdot │ │ │ │ ├── index.js │ │ │ │ └── abc │ │ │ │ │ └── index.js │ │ │ ├── node_path │ │ │ │ ├── x │ │ │ │ │ ├── aaa │ │ │ │ │ │ └── index.js │ │ │ │ │ └── ccc │ │ │ │ │ │ └── index.js │ │ │ │ └── y │ │ │ │ │ ├── bbb │ │ │ │ │ └── index.js │ │ │ │ │ └── ccc │ │ │ │ │ └── index.js │ │ │ ├── module_dir │ │ │ │ ├── zmodules │ │ │ │ │ └── bbb │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── main.js │ │ │ │ ├── xmodules │ │ │ │ │ └── aaa │ │ │ │ │ │ └── index.js │ │ │ │ └── ymodules │ │ │ │ │ └── aaa │ │ │ │ │ └── index.js │ │ │ ├── nonstring.js │ │ │ ├── core.js │ │ │ ├── subdirs.js │ │ │ └── filter_sync.js │ │ ├── .travis.yml │ │ ├── example │ │ │ ├── sync.js │ │ │ └── async.js │ │ ├── lib │ │ │ ├── core.js │ │ │ └── caller.js │ │ └── index.js │ ├── from │ │ └── .npmignore │ ├── qs │ │ ├── .jshintignore │ │ ├── index.js │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── .jshintrc │ │ ├── Makefile │ │ ├── lib │ │ │ └── index.js │ │ └── .npmignore │ ├── xtend │ │ ├── .npmignore │ │ ├── Makefile │ │ ├── mutable.js │ │ └── immutable.js │ ├── clone │ │ ├── .npmignore │ │ └── .travis.yml │ ├── defaults │ │ ├── .npmignore │ │ └── index.js │ ├── duplexer2 │ │ ├── .npmignore │ │ └── .travis.yml │ ├── globule │ │ ├── .npmignore │ │ ├── test │ │ │ └── fixtures │ │ │ │ └── expand │ │ │ │ ├── README.md │ │ │ │ ├── js │ │ │ │ ├── bar.js │ │ │ │ └── foo.js │ │ │ │ ├── css │ │ │ │ ├── baz.css │ │ │ │ └── qux.css │ │ │ │ └── deep │ │ │ │ ├── deep.txt │ │ │ │ └── deeper │ │ │ │ ├── deeper.txt │ │ │ │ └── deepest │ │ │ │ └── deepest.txt │ │ ├── node_modules │ │ │ ├── minimatch │ │ │ │ ├── .npmignore │ │ │ │ └── test │ │ │ │ │ └── extglob-ending-with-state-char.js │ │ │ ├── glob │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── examples │ │ │ │ │ ├── g.js │ │ │ │ │ └── usr-local.js │ │ │ │ └── test │ │ │ │ │ └── zz-cleanup.js │ │ │ └── graceful-fs │ │ │ │ └── .npmignore │ │ ├── .travis.yml │ │ └── .jshintrc │ ├── lru-cache │ │ ├── .npmignore │ │ └── .travis.yml │ ├── multipipe │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ └── History.md │ ├── end-of-stream │ │ └── .npmignore │ ├── flagged-respawn │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── test │ │ │ └── bin │ │ │ │ ├── exit_code.js │ │ │ │ └── signal.js │ │ └── lib │ │ │ ├── reorder.js │ │ │ └── respawn.js │ ├── liftoff │ │ ├── .npmignore │ │ ├── lib │ │ │ ├── silent_require.js │ │ │ └── file_search.js │ │ ├── .travis.yml │ │ └── .jshintrc │ ├── stream-consume │ │ └── .npmignore │ ├── glob-watcher │ │ ├── test │ │ │ └── fixtures │ │ │ │ └── test.coffee │ │ ├── .npmignore │ │ └── .travis.yml │ ├── normalize-package-data │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── test │ │ │ └── fixtures │ │ │ │ ├── no-description.json │ │ │ │ └── badscripts.json │ │ ├── AUTHORS │ │ └── lib │ │ │ └── safe_format.js │ ├── pretty-hrtime │ │ ├── .jshintignore │ │ └── .npmignore │ ├── string_decoder │ │ └── .npmignore │ ├── body-parser │ │ └── node_modules │ │ │ └── qs │ │ │ ├── .eslintignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── lib │ │ │ └── index.js │ │ │ ├── .npmignore │ │ │ └── component.json │ ├── debug │ │ ├── .jshintrc │ │ ├── .npmignore │ │ └── component.json │ ├── duplexer │ │ ├── .npmignore │ │ └── .travis.yml │ ├── semver │ │ ├── head.js.txt │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── semver.min.js.gz │ │ ├── semver.browser.js.gz │ │ ├── foot.js.txt │ │ └── test │ │ │ └── amd.js │ ├── through2 │ │ ├── .npmignore │ │ └── node_modules │ │ │ ├── isarray │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── Makefile │ │ │ ├── index.js │ │ │ └── test.js │ │ │ └── readable-stream │ │ │ ├── .zuul.yml │ │ │ ├── .npmignore │ │ │ ├── duplex.js │ │ │ ├── writable.js │ │ │ ├── passthrough.js │ │ │ └── transform.js │ ├── balanced-match │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ └── example.js │ ├── hosted-git-info │ │ ├── .npmignore │ │ └── .travis.yml │ ├── proxy-middleware │ │ ├── .npmignore │ │ └── .travis.yml │ ├── vinyl-fs │ │ ├── node_modules │ │ │ ├── clone │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ ├── graceful-fs │ │ │ │ ├── .npmignore │ │ │ │ └── fs.js │ │ │ ├── through2 │ │ │ │ └── .npmignore │ │ │ ├── readable-stream │ │ │ │ ├── .npmignore │ │ │ │ ├── duplex.js │ │ │ │ ├── writable.js │ │ │ │ ├── passthrough.js │ │ │ │ └── transform.js │ │ │ ├── vinyl │ │ │ │ └── lib │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── isStream.js │ │ │ │ │ ├── cloneBuffer.js │ │ │ │ │ ├── isBuffer.js │ │ │ │ │ └── inspectStream.js │ │ │ └── .bin │ │ │ │ ├── strip-bom.cmd │ │ │ │ └── strip-bom │ │ ├── index.js │ │ └── lib │ │ │ ├── src │ │ │ ├── getContents │ │ │ │ ├── readDir.js │ │ │ │ ├── streamFile.js │ │ │ │ └── bufferFile.js │ │ │ └── getStats.js │ │ │ └── dest │ │ │ └── writeContents │ │ │ ├── writeDir.js │ │ │ └── writeBuffer.js │ ├── batch │ │ ├── .npmignore │ │ ├── Makefile │ │ └── component.json │ ├── gulp-webserver │ │ ├── node_modules │ │ │ ├── xtend │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ ├── mutable.js │ │ │ │ └── index.js │ │ │ ├── gulp-util │ │ │ │ ├── lib │ │ │ │ │ ├── linefeed.js │ │ │ │ │ ├── File.js │ │ │ │ │ ├── colors.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── beep.js │ │ │ │ │ ├── noop.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── isStream.js │ │ │ │ │ ├── isBuffer.js │ │ │ │ │ ├── combine.js │ │ │ │ │ ├── replaceExtension.js │ │ │ │ │ ├── log.js │ │ │ │ │ └── buffer.js │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ ├── through2 │ │ │ │ └── .npmignore │ │ │ ├── readable-stream │ │ │ │ ├── .npmignore │ │ │ │ ├── duplex.js │ │ │ │ ├── writable.js │ │ │ │ ├── transform.js │ │ │ │ └── passthrough.js │ │ │ ├── minimist │ │ │ │ ├── .travis.yml │ │ │ │ ├── example │ │ │ │ │ └── parse.js │ │ │ │ └── test │ │ │ │ │ ├── whitespace.js │ │ │ │ │ └── parse_modified.js │ │ │ ├── vinyl │ │ │ │ ├── lib │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── isStream.js │ │ │ │ │ ├── cloneBuffer.js │ │ │ │ │ ├── isBuffer.js │ │ │ │ │ └── inspectStream.js │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ ├── ansi-regex │ │ │ │ └── index.js │ │ │ ├── has-ansi │ │ │ │ └── index.js │ │ │ ├── strip-ansi │ │ │ │ └── index.js │ │ │ └── .bin │ │ │ │ ├── has-ansi.cmd │ │ │ │ ├── strip-ansi.cmd │ │ │ │ ├── supports-color.cmd │ │ │ │ ├── has-ansi │ │ │ │ ├── strip-ansi │ │ │ │ └── supports-color │ │ ├── .npmignore │ │ └── .editorconfig │ ├── brace-expansion │ │ ├── .npmignore │ │ └── example.js │ ├── inherits │ │ └── inherits.js │ ├── node.extend │ │ ├── .npmignore │ │ ├── index.js │ │ └── History.md │ ├── unique-stream │ │ ├── .npmignore │ │ └── .travis.yml │ ├── v8flags │ │ └── .npmignore │ ├── loud-rejection │ │ └── register.js │ ├── spdx-exceptions │ │ └── README.md │ ├── split │ │ ├── .npmignore │ │ └── .travis.yml │ ├── archy │ │ └── .travis.yml │ ├── event-stream │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── test │ │ │ ├── helper │ │ │ └── index.js │ │ │ └── stringify.js │ ├── findup-sync │ │ └── .npmignore │ ├── glob-stream │ │ └── node_modules │ │ │ ├── through2 │ │ │ └── .npmignore │ │ │ └── readable-stream │ │ │ ├── .npmignore │ │ │ ├── duplex.js │ │ │ ├── transform.js │ │ │ ├── writable.js │ │ │ └── passthrough.js │ ├── gulp-livereload │ │ ├── .travis.yml │ │ ├── .npmignore │ │ ├── node_modules │ │ │ ├── ansi-regex │ │ │ │ └── index.js │ │ │ ├── has-ansi │ │ │ │ └── index.js │ │ │ ├── strip-ansi │ │ │ │ └── index.js │ │ │ └── .bin │ │ │ │ ├── has-ansi.cmd │ │ │ │ ├── strip-ansi.cmd │ │ │ │ ├── supports-color.cmd │ │ │ │ ├── has-ansi │ │ │ │ ├── strip-ansi │ │ │ │ └── supports-color │ │ ├── examples │ │ │ ├── nodemon │ │ │ │ ├── app.js │ │ │ │ └── index.js │ │ │ ├── watch.js │ │ │ └── basepath.js │ │ └── test │ │ │ └── dev.pem │ ├── map-stream │ │ ├── .npmignore │ │ └── .travis.yml │ ├── pause-stream │ │ ├── .npmignore │ │ └── index.js │ ├── readable-stream │ │ ├── .npmignore │ │ ├── duplex.js │ │ ├── transform.js │ │ ├── writable.js │ │ ├── passthrough.js │ │ └── readable.js │ ├── vinyl │ │ └── lib │ │ │ ├── isBuffer.js │ │ │ ├── isNull.js │ │ │ ├── isStream.js │ │ │ ├── cloneBuffer.js │ │ │ └── inspectStream.js │ ├── concat-map │ │ ├── .travis.yml │ │ ├── example │ │ │ └── map.js │ │ └── index.js │ ├── connect-livereload │ │ ├── .npmignore │ │ └── .travis.yml │ ├── signal-exit │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── test │ │ │ └── fixtures │ │ │ ├── end-of-execution.js │ │ │ ├── exit.js │ │ │ ├── sigpipe.js │ │ │ ├── load-unload.js │ │ │ ├── sigterm.js │ │ │ ├── sigint.js │ │ │ └── exit-last.js │ ├── stream-combiner │ │ ├── .npmignore │ │ └── .travis.yml │ ├── dateformat │ │ ├── .travis.yml │ │ └── test │ │ │ ├── weekofyear │ │ │ └── test_weekofyear.js │ │ │ └── test_isoutcdatetime.js │ ├── ms │ │ └── .npmignore │ ├── deprecated │ │ ├── .npmignore │ │ └── .travis.yml │ ├── gulp-util │ │ └── lib │ │ │ ├── isNull.js │ │ │ ├── noop.js │ │ │ ├── env.js │ │ │ ├── isStream.js │ │ │ ├── isBuffer.js │ │ │ ├── combine.js │ │ │ └── buffer.js │ ├── iconv-lite │ │ ├── .npmignore │ │ └── .travis.yml │ ├── through │ │ └── .travis.yml │ ├── unpipe │ │ └── HISTORY.md │ ├── is-arrayish │ │ ├── .npmignore │ │ ├── .istanbul.yml │ │ ├── index.js │ │ └── .editorconfig │ ├── ordered-read-streams │ │ ├── .travis.yml │ │ └── .npmignore │ ├── replace-ext │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── index.js │ ├── builtin-modules │ │ ├── static.js │ │ └── index.js │ ├── core-util-is │ │ └── README.md │ ├── has-gulplog │ │ ├── README.md │ │ └── index.js │ ├── minimist │ │ ├── example │ │ │ └── parse.js │ │ ├── .travis.yml │ │ └── test │ │ │ ├── whitespace.js │ │ │ ├── parse_modified.js │ │ │ ├── stop_early.js │ │ │ └── kv_short.js │ ├── sequencify │ │ ├── .travis.yml │ │ └── .npmignore │ ├── mkdirp │ │ ├── node_modules │ │ │ └── minimist │ │ │ │ ├── .travis.yml │ │ │ │ ├── example │ │ │ │ └── parse.js │ │ │ │ └── test │ │ │ │ ├── whitespace.js │ │ │ │ └── parse_modified.js │ │ ├── .travis.yml │ │ ├── examples │ │ │ └── pow.js │ │ └── bin │ │ │ └── usage.txt │ ├── pinkie-promise │ │ └── index.js │ ├── utils-merge │ │ └── .travis.yml │ ├── number-is-nan │ │ └── index.js │ ├── isarray │ │ └── index.js │ ├── serve-index │ │ └── public │ │ │ └── icons │ │ │ ├── box.png │ │ │ ├── cd.png │ │ │ ├── map.png │ │ │ ├── drive.png │ │ │ ├── film.png │ │ │ ├── folder.png │ │ │ ├── font.png │ │ │ ├── image.png │ │ │ ├── page.png │ │ │ ├── page_add.png │ │ │ ├── page_go.png │ │ │ ├── page_key.png │ │ │ ├── page_red.png │ │ │ ├── controller.png │ │ │ ├── page_attach.png │ │ │ ├── page_code.png │ │ │ ├── page_copy.png │ │ │ ├── page_delete.png │ │ │ ├── page_edit.png │ │ │ ├── page_error.png │ │ │ ├── page_excel.png │ │ │ ├── page_find.png │ │ │ ├── page_gear.png │ │ │ ├── page_green.png │ │ │ ├── page_link.png │ │ │ ├── page_paste.png │ │ │ ├── page_save.png │ │ │ ├── page_white.png │ │ │ ├── page_word.png │ │ │ ├── page_world.png │ │ │ ├── page_refresh.png │ │ │ ├── page_white_c.png │ │ │ ├── page_white_cd.png │ │ │ ├── page_white_go.png │ │ │ ├── page_white_h.png │ │ │ ├── application_xp.png │ │ │ ├── page_lightning.png │ │ │ ├── page_paintbrush.png │ │ │ ├── page_white_add.png │ │ │ ├── page_white_code.png │ │ │ ├── page_white_copy.png │ │ │ ├── page_white_cup.png │ │ │ ├── page_white_dvd.png │ │ │ ├── page_white_edit.png │ │ │ ├── page_white_error.png │ │ │ ├── page_white_excel.png │ │ │ ├── page_white_find.png │ │ │ ├── page_white_flash.png │ │ │ ├── page_white_gear.png │ │ │ ├── page_white_get.png │ │ │ ├── page_white_key.png │ │ │ ├── page_white_link.png │ │ │ ├── page_white_medal.png │ │ │ ├── page_white_paint.png │ │ │ ├── page_white_paste.png │ │ │ ├── page_white_php.png │ │ │ ├── page_white_put.png │ │ │ ├── page_white_ruby.png │ │ │ ├── page_white_stack.png │ │ │ ├── page_white_star.png │ │ │ ├── page_white_text.png │ │ │ ├── page_white_tux.png │ │ │ ├── page_white_width.png │ │ │ ├── page_white_word.png │ │ │ ├── page_white_world.png │ │ │ ├── page_white_zip.png │ │ │ ├── page_white_acrobat.png │ │ │ ├── page_white_camera.png │ │ │ ├── page_white_csharp.png │ │ │ ├── page_white_delete.png │ │ │ ├── page_white_magnify.png │ │ │ ├── page_white_office.png │ │ │ ├── page_white_picture.png │ │ │ ├── page_white_swoosh.png │ │ │ ├── page_white_vector.png │ │ │ ├── page_white_wrench.png │ │ │ ├── page_white_code_red.png │ │ │ ├── page_white_coldfusion.png │ │ │ ├── page_white_compressed.png │ │ │ ├── page_white_cplusplus.png │ │ │ ├── page_white_database.png │ │ │ ├── page_white_freehand.png │ │ │ ├── page_white_horizontal.png │ │ │ ├── page_white_lightning.png │ │ │ ├── page_white_paintbrush.png │ │ │ ├── page_white_powerpoint.png │ │ │ ├── page_white_text_width.png │ │ │ ├── application_xp_terminal.png │ │ │ ├── page_white_actionscript.png │ │ │ └── page_white_visualstudio.png │ ├── gulplog │ │ ├── index.js │ │ └── CHANGELOG.md │ ├── orchestrator │ │ └── .npmignore │ ├── ansi-regex │ │ └── index.js │ ├── spdx-expression-parse │ │ └── index.js │ ├── util-deprecate │ │ ├── node.js │ │ └── History.md │ ├── has-ansi │ │ └── index.js │ ├── .bin │ │ ├── mime.cmd │ │ ├── gulp.cmd │ │ ├── mkdirp.cmd │ │ ├── semver.cmd │ │ ├── user-home.cmd │ │ ├── dateformat.cmd │ │ ├── strip-indent.cmd │ │ ├── mime │ │ ├── gulp │ │ ├── mkdirp │ │ ├── semver │ │ ├── user-home │ │ ├── dateformat │ │ └── strip-indent │ ├── mime-db │ │ └── index.js │ ├── process-nextick-args │ │ └── .travis.yml │ ├── strip-ansi │ │ └── index.js │ ├── websocket-driver │ │ └── CODE_OF_CONDUCT.md │ ├── is │ │ ├── component.json │ │ └── Makefile │ ├── array-differ │ │ └── index.js │ ├── is-finite │ │ └── index.js │ ├── content-type │ │ └── HISTORY.md │ ├── redent │ │ └── index.js │ ├── gulp │ │ ├── completion │ │ │ └── fish │ │ └── lib │ │ │ └── taskTree.js │ ├── spdx-correct │ │ └── README.md │ ├── is-builtin-module │ │ └── index.js │ ├── trim-newlines │ │ └── index.js │ ├── escape-string-regexp │ │ └── index.js │ ├── tildify │ │ └── index.js │ ├── websocket-extensions │ │ └── CHANGELOG.md │ ├── clone-stats │ │ └── index.js │ ├── map-obj │ │ └── index.js │ ├── decamelize │ │ └── index.js │ ├── camelcase-keys │ │ └── index.js │ ├── strip-indent │ │ └── index.js │ ├── inflight │ │ └── .eslintrc │ ├── depd │ │ └── lib │ │ │ └── compat │ │ │ └── event-listener-count.js │ ├── faye-websocket │ │ └── examples │ │ │ └── haproxy.conf │ ├── is-utf8 │ │ └── README.md │ └── strip-bom │ │ └── index.js ├── app │ ├── link.js │ ├── test.html │ └── test.js └── index.html ├── rjs ├── built │ ├── css │ │ ├── grid.css │ │ ├── form.css │ │ ├── nav.css │ │ └── main.css │ └── img │ │ ├── test.png │ │ ├── j_0001.gif │ │ ├── j_0002.gif │ │ ├── j_0003.gif │ │ ├── j_0004.gif │ │ └── j_0005.gif ├── public │ ├── css │ │ ├── grid.css │ │ ├── form.css │ │ ├── nav.css │ │ └── main.css │ ├── img │ │ ├── j_0001.gif │ │ ├── j_0002.gif │ │ ├── j_0003.gif │ │ ├── j_0004.gif │ │ ├── j_0005.gif │ │ └── test.png │ └── js │ │ ├── pagemodule1.js │ │ └── pagemodule2.js ├── README.md └── page │ ├── page2.html │ └── page1.html ├── .gitignore ├── simple-gulp-Build ├── dist │ ├── js │ │ ├── test.min.201604051532.js │ │ ├── page.min.201604051532.js │ │ └── link.min.201604051532.js │ ├── css │ │ ├── sass.min.css │ │ ├── test.min.css │ │ └── page.min.css │ ├── image │ │ ├── charles_icon64.png │ │ └── tempImg │ │ │ └── charles_icon128.png │ ├── test.html │ └── page │ │ ├── page1.html │ │ └── page.html ├── app │ ├── js │ │ ├── test.js │ │ ├── page.js │ │ └── link.js │ ├── image │ │ ├── charles_icon64.png │ │ └── tempImg │ │ │ └── charles_icon128.png │ ├── sass │ │ ├── sass.scss │ │ ├── test.scss │ │ └── page.scss │ ├── css │ │ ├── sass.css │ │ ├── test.css │ │ └── page.css │ └── test.html └── index.html ├── linkImg ├── 20160329.png └── 20160405.png ├── css-notes ├── README.md ├── sass │ ├── base-of-user-defined │ │ ├── scss │ │ │ └── sassCore │ │ │ │ ├── sassCore-3.0.gem │ │ │ │ └── ext │ │ │ │ └── font-face │ │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ └── .sass-cache │ │ │ ├── 3f57fe86e1366dec7084ff5ab9bc159d04b8c7fa │ │ │ ├── _base.scssc │ │ │ ├── _icons.scssc │ │ │ ├── _variable.scssc │ │ │ ├── _wap_mixin.scssc │ │ │ └── _web_mixin.scssc │ │ │ ├── 8e30ec6106331d21896e81118b10ea79c1fc9b2f │ │ │ ├── _css3.scssc │ │ │ ├── _grid.scssc │ │ │ ├── _mixin.scssc │ │ │ ├── _reset.scssc │ │ │ ├── _setting.scssc │ │ │ └── _media-queries.scssc │ │ │ └── fa629066f1aa846301e5745a027193614ce9330e │ │ │ └── common.scssc │ └── .sass-cache │ │ ├── 259edbbeeb91873c7566e0342f11ff978f524544 │ │ └── print.scssc │ │ └── 4b574c2b3176a70fe7d6e61db00d135d11f6fc47 │ │ └── _utilities.scssc ├── mobile │ ├── remove-uc-foucs-border │ └── images-height.md └── nth-child-nth-of-type ├── html-notes ├── README.md └── html5 │ └── progress.md ├── js-notes ├── README.md ├── nendCare │ ├── needCare001.txt │ └── safari-format-time.md ├── ImagesLazyLoad │ ├── images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── Thumbs.db │ │ ├── scroll1.png │ │ ├── scroll2.png │ │ ├── scroll3.png │ │ ├── scroll4.png │ │ ├── scroll5.png │ │ ├── loadding.gif │ │ └── novisible.png │ └── README.md ├── js-optimization │ └── README.md ├── jq-api │ └── README.md ├── jq-plus │ ├── README.md │ └── local-image-compressed ├── angularjs │ └── angularjs-passing-data-between-pages.md └── ajax │ └── README.md ├── project └── mobliepage │ └── down │ ├── bluearr.png │ ├── shadbox.png │ ├── whitearr.png │ ├── yunBg_02.png │ └── iconpng_23.png └── establishment-of-demand.md /gulp-autoRefresh/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/watch/test/d/d/t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/watch/test/d/t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/extend/.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mini-lr/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rjs/built/css/grid.css: -------------------------------------------------------------------------------- 1 | .grid {border: 1px solid #888;} -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/livereload-js/lib/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/open/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/rechoir/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/mug.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rjs/built/css/form.css: -------------------------------------------------------------------------------- 1 | .form {padding: 5px; color: blue;} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | */node_modules 3 | **/*/node_modules -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/from/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/qs/.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/baz/doom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/mug.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /rjs/built/css/nav.css: -------------------------------------------------------------------------------- 1 | .nav {margin: 10px;//注释 background: #999;} -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/clone/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/defaults/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/duplexer2/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/test/fixtures/expand/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/test/fixtures/expand/js/bar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/test/fixtures/expand/js/foo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/multipipe/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/cup.coffee: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/end-of-stream/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/flagged-respawn/.npmignore: -------------------------------------------------------------------------------- 1 | *.flags.json 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/test/fixtures/expand/css/baz.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/test/fixtures/expand/css/qux.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/test/fixtures/expand/deep/deep.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/liftoff/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | artwork 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/pathfilter/deep_ref/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/other_path/root.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/stream-consume/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/glob-watcher/test/fixtures/test.coffee: -------------------------------------------------------------------------------- 1 | test test -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/normalize-package-data/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/open/.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .git 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/pretty-hrtime/.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/bytes/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/body-parser/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/duplexer/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | *.err -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/test/fixtures/expand/deep/deeper/deeper.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/qs/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/other_path/lib/other-lib.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/semver/head.js.txt: -------------------------------------------------------------------------------- 1 | ;(function(exports) { 2 | 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .jshintrc 3 | .travis.yml -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/node_modules/minimatch/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/hosted-git-info/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .# 3 | node_modules 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/proxy-middleware/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /test 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/alt.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/ref.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/precedence/aaa.js: -------------------------------------------------------------------------------- 1 | module.exports = 'wtf' 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/precedence/bbb.js: -------------------------------------------------------------------------------- 1 | module.exports '>_<' 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/baz/quux.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/subdirs/node_modules/a/b/c/x.json: -------------------------------------------------------------------------------- 1 | [1,2,3] 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/subdirs/node_modules/a/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/clone/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /rjs/public/css/grid.css: -------------------------------------------------------------------------------- 1 | /*grid布局*/ 2 | .grid { 3 | border: 1px solid #888; 4 | } 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/batch/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/node_modules/glob/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | test/a/ 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/test/fixtures/expand/deep/deeper/deepest/deepest.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/qs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/dotdot/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'whatever' 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/node_path/x/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'A' 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/node_path/x/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'C' 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/node_path/y/bbb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'B' 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/node_path/y/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'CY' 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/punycode/node_modules/punycode/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/quux/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/node_modules/readable-stream/.zuul.yml: -------------------------------------------------------------------------------- 1 | ui: tape 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /rjs/public/css/form.css: -------------------------------------------------------------------------------- 1 | /*form表格*/ 2 | .form { 3 | padding: 5px; 4 | color: blue; 5 | } 6 | -------------------------------------------------------------------------------- /simple-gulp-Build/dist/js/test.min.201604051532.js: -------------------------------------------------------------------------------- 1 | document.onload=function(){alert("测试")}(); -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/brace-expansion/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/clone/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mini-lr/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | 3 | tmp/phantomjs.log 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/node.extend/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/deeper/ref.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/precedence/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'okok' 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/precedence/aaa/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('./')) 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | 3 | tmp/phantomjs.log 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/unique-stream/.npmignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .DS_Store 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/v8flags/.npmignore: -------------------------------------------------------------------------------- 1 | *.yml 2 | LICENSE 3 | README.md 4 | test.js 5 | -------------------------------------------------------------------------------- /linkImg/20160329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/linkImg/20160329.png -------------------------------------------------------------------------------- /linkImg/20160405.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/linkImg/20160405.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/duplexer2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/loud-rejection/register.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | require('./')(); 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/multipipe/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/node.extend/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/extend'); 2 | 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/spdx-exceptions/README.md: -------------------------------------------------------------------------------- 1 | The package exports an array of strings. 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/split/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | -------------------------------------------------------------------------------- /rjs/built/img/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/built/img/test.png -------------------------------------------------------------------------------- /rjs/public/css/nav.css: -------------------------------------------------------------------------------- 1 | /*nav导航*/ 2 | .nav { 3 | margin: 10px;//注释 4 | background: #999; 5 | } 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/app/link.js: -------------------------------------------------------------------------------- 1 | 2 | document.onload = function () { 3 | alert('测试'); //执行gulp修改alert的值 4 | }() -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/archy/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/balanced-match/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/event-stream/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/event-stream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/findup-sync/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | .jshintrc 4 | Gruntfile.js 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/glob-stream/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .jshintrc 3 | .travis.yml -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .travis.yml 3 | .DS_Store 4 | .git* 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/linefeed.js: -------------------------------------------------------------------------------- 1 | module.exports = '\n'; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/map-stream/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/pause-stream/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/baz/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "quux.js" 3 | } 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/unique-stream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .jshintrc 3 | .travis.yml -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | module.exports = require('buffer').Buffer.isBuffer; 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- 1 | browser: 2 | node ./support/compile 3 | 4 | .PHONY: browser -------------------------------------------------------------------------------- /rjs/built/img/j_0001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/built/img/j_0001.gif -------------------------------------------------------------------------------- /rjs/built/img/j_0002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/built/img/j_0002.gif -------------------------------------------------------------------------------- /rjs/built/img/j_0003.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/built/img/j_0003.gif -------------------------------------------------------------------------------- /rjs/built/img/j_0004.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/built/img/j_0004.gif -------------------------------------------------------------------------------- /rjs/built/img/j_0005.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/built/img/j_0005.gif -------------------------------------------------------------------------------- /rjs/public/img/j_0001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/public/img/j_0001.gif -------------------------------------------------------------------------------- /rjs/public/img/j_0002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/public/img/j_0002.gif -------------------------------------------------------------------------------- /rjs/public/img/j_0003.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/public/img/j_0003.gif -------------------------------------------------------------------------------- /rjs/public/img/j_0004.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/public/img/j_0004.gif -------------------------------------------------------------------------------- /rjs/public/img/j_0005.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/public/img/j_0005.gif -------------------------------------------------------------------------------- /rjs/public/img/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/rjs/public/img/test.png -------------------------------------------------------------------------------- /simple-gulp-Build/dist/js/page.min.201604051532.js: -------------------------------------------------------------------------------- 1 | document.onload=function(){alert("测试页面page By Little")}(); -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/connect-livereload/.npmignore: -------------------------------------------------------------------------------- 1 | examples/ 2 | docs/ 3 | src/ 4 | test/ 5 | spec/ 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/File.js: -------------------------------------------------------------------------------- 1 | module.exports = require('vinyl'); -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .jshintrc 3 | .travis.yml -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/map-stream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/dotdot/abc/index.js: -------------------------------------------------------------------------------- 1 | var x = require('..'); 2 | console.log(x); 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/precedence/bbb/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('./')); // should throw 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/semver/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | .nyc_output/ 4 | nyc_output/ 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/signal-exit/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | nyc_output 4 | coverage 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/split/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/stream-combiner/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/body-parser/node_modules/qs/.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/raw-body/.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | test/ 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /simple-gulp-Build/app/js/test.js: -------------------------------------------------------------------------------- 1 | 2 | document.onload = function () { 3 | alert('测试'); //执行gulp修改alert的值 4 | }(); -------------------------------------------------------------------------------- /css-notes/README.md: -------------------------------------------------------------------------------- 1 | The problem of the storage folder CSS and CSS3 projects 2 | 3 | 注意:转载请说明来源 wangfeng 创建 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/dateformat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/node_modules/glob/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/colors.js: -------------------------------------------------------------------------------- 1 | module.exports = require('chalk'); -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/date.js: -------------------------------------------------------------------------------- 1 | module.exports = require('dateformat'); -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/normalize-package-data/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/module_dir/zmodules/bbb/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "main.js" 3 | } 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/stream-combiner/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /html-notes/README.md: -------------------------------------------------------------------------------- 1 | This is a special method of HTML notes the project folder 2 | 3 | 注意:转载请说明来源 wangfeng 创建 4 | -------------------------------------------------------------------------------- /js-notes/README.md: -------------------------------------------------------------------------------- 1 | This is a special method of JavaScript notes the project folder 2 | 3 | 注意:转载请说明来源 wangfeng 创建 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/deprecated/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-util/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/iconv-lite/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *sublime-* 3 | generation 4 | test 5 | wiki 6 | coverage 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/proxy-middleware/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.8" 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/incorrect_main/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "wrong.js" 3 | } 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.0 / 2015-06-14 2 | ================== 3 | 4 | * Initial release 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/glob-watcher/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/is-arrayish/.npmignore: -------------------------------------------------------------------------------- 1 | /coverage/ 2 | /test.js 3 | /test/ 4 | *.sw[a-p] 5 | /node_modules/ 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/ordered-read-streams/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/replace-ext/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/module_dir/xmodules/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x * 100 } 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/module_dir/ymodules/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x + 100 } 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/module_dir/zmodules/bbb/main.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { return n * 111 } 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/biz/node_modules/garply/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'hello garply'; 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "./lib" 3 | } 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('tiv') * 100; 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/semver/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | - '0.12' 5 | - 'iojs' 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/body-parser/node_modules/qs/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/iconv-lite/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *sublime-* 3 | generation 4 | test 5 | wiki 6 | -------------------------------------------------------------------------------- /js-notes/nendCare/needCare001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/nendCare/needCare001.txt -------------------------------------------------------------------------------- /project/mobliepage/down/bluearr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/project/mobliepage/down/bluearr.png -------------------------------------------------------------------------------- /project/mobliepage/down/shadbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/project/mobliepage/down/shadbox.png -------------------------------------------------------------------------------- /simple-gulp-Build/app/js/page.js: -------------------------------------------------------------------------------- 1 | document.onload = function () { 2 | alert('测试页面page By Little'); //执行gulp修改alert的值 3 | }(); -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/batch/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should 5 | 6 | .PHONY: test -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/builtin-modules/static.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('./builtin-modules.json'); 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/glob-stream/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- 1 | browser: 2 | node ./support/compile 3 | 4 | .PHONY: browser -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/has-gulplog/README.md: -------------------------------------------------------------------------------- 1 | # has-gulplog 2 | Check if gulplog is available before attempting to use it 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/is-arrayish/.istanbul.yml: -------------------------------------------------------------------------------- 1 | instrumentation: 2 | excludes: 3 | - test.js 4 | - test/**/* 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/sequencify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.7 4 | - 0.8 5 | - 0.9 6 | - 0.10 -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/1.jpg -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/2.jpg -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/3.jpg -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/4.jpg -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/5.jpg -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/6.jpg -------------------------------------------------------------------------------- /project/mobliepage/down/whitearr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/project/mobliepage/down/whitearr.png -------------------------------------------------------------------------------- /project/mobliepage/down/yunBg_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/project/mobliepage/down/yunBg_02.png -------------------------------------------------------------------------------- /rjs/built/css/main.css: -------------------------------------------------------------------------------- 1 | .nav {margin: 10px;//注释 background: #999;}.grid {border: 1px solid #888;}.form {padding: 5px; color: blue;} -------------------------------------------------------------------------------- /simple-gulp-Build/dist/js/link.min.201604051532.js: -------------------------------------------------------------------------------- 1 | var gulp=require("gulp");document.onload=function(){alert("测试页面 By Little")}(); -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/balanced-match/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test/*.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/glob-stream/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.sublime-project 3 | *.sublime-workspace 4 | .fuse_hidden* 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/livereload-js/.npmignore: -------------------------------------------------------------------------------- 1 | /lib-cov/ 2 | /src/ 3 | /test/ 4 | /bower.json 5 | /Rakefile 6 | /Gruntfile.js 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mini-lr/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 'iojs' 5 | - '0.12' 6 | - '0.10' 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mkdirp/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/pause-stream/index.js: -------------------------------------------------------------------------------- 1 | //through@2 handles this by default! 2 | module.exports = require('through') 3 | 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/pinkie-promise/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = global.Promise || require('pinkie'); 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/body-parser/node_modules/qs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/Thumbs.db -------------------------------------------------------------------------------- /project/mobliepage/down/iconpng_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/project/mobliepage/down/iconpng_23.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/duplexer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.8" 6 | - "0.6" 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/glob-stream/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/glob-stream/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/clone/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.10 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/scroll1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/scroll1.png -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/scroll2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/scroll2.png -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/scroll3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/scroll3.png -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/scroll4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/scroll4.png -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/scroll5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/scroll5.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/glob-stream/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/vinyl/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/hosted-git-info/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | script: "npm test" 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/utils-merge/.travis.yml: -------------------------------------------------------------------------------- 1 | language: "node_js" 2 | node_js: 3 | - "0.4" 4 | - "0.6" 5 | - "0.8" 6 | - "0.10" 7 | -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/loadding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/loadding.gif -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/images/novisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/js-notes/ImagesLazyLoad/images/novisible.png -------------------------------------------------------------------------------- /js-notes/js-optimization/README.md: -------------------------------------------------------------------------------- 1 | Here is the JavsScript folder storage optimization 2 | 3 | 这是一个存放javascript优化的文件夹 4 | 5 | 注:转载 wangfeng 创建 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mkdirp/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/normalize-package-data/test/fixtures/no-description.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "foo-bar-package", 3 | "version": "0.0.1" 4 | } -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/number-is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = Number.isNaN || function (x) { 3 | return x !== x; 4 | }; 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "deep", 3 | "version": "1.2.3" 4 | } 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/iconv-lite/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | - 0.11 6 | -------------------------------------------------------------------------------- /rjs/public/css/main.css: -------------------------------------------------------------------------------- 1 | /*little islittle@outlook.com For r.js*/ 2 | @import url("nav.css"); 3 | @import url("grid.css"); 4 | @import url("form.css"); -------------------------------------------------------------------------------- /simple-gulp-Build/app/image/charles_icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/simple-gulp-Build/app/image/charles_icon64.png -------------------------------------------------------------------------------- /simple-gulp-Build/app/js/link.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp'); 2 | document.onload = function () { 3 | alert('测试页面 By Little'); //执行gulp修改alert的值 4 | }(); -------------------------------------------------------------------------------- /simple-gulp-Build/dist/css/sass.min.css: -------------------------------------------------------------------------------- 1 | .p.p1{line-height:1}.p.p2{line-height:4;-webkit-transform:translate3d(30%,30%,0);transform:translate3d(30%,30%,0)} -------------------------------------------------------------------------------- /simple-gulp-Build/dist/css/test.min.css: -------------------------------------------------------------------------------- 1 | .p.p1{line-height:1}.p.p2{line-height:4;-webkit-transform:translate3d(30%,30%,0);transform:translate3d(30%,30%,0)} -------------------------------------------------------------------------------- /simple-gulp-Build/dist/image/charles_icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/simple-gulp-Build/dist/image/charles_icon64.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/deprecated/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.9" 4 | - "0.10" 5 | after_script: 6 | - npm run coveralls -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/glob-watcher/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.9" 4 | - "0.10" 5 | after_script: 6 | - npm run coveralls -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/beep.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | process.stdout.write('\x07'); 3 | }; 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/qs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components 7 | test -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/body-parser/node_modules/qs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | - 4 7 | 8 | sudo: false 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | before_script: 6 | - npm install -g grunt-cli 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-util/lib/noop.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through.obj(); 5 | }; 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | after_script: 5 | - npm run coveralls -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/liftoff/lib/silent_require.js: -------------------------------------------------------------------------------- 1 | module.exports = function (path) { 2 | try { 3 | return require(path); 4 | } catch (e) {} 5 | }; 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/example/sync.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | var res = resolve.sync('tap', { basedir: __dirname }); 3 | console.log(res); 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/semver/semver.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/semver/semver.min.js.gz -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/sequencify/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components 7 | *.orig 8 | .idea 9 | test 10 | -------------------------------------------------------------------------------- /simple-gulp-Build/app/image/tempImg/charles_icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/simple-gulp-Build/app/image/tempImg/charles_icon128.png -------------------------------------------------------------------------------- /simple-gulp-Build/app/sass/sass.scss: -------------------------------------------------------------------------------- 1 | .p{ 2 | &.p1{ 3 | line-height: 1; 4 | }; 5 | &.p2{ 6 | line-height: 4; 7 | transform:translate3d(30%,30%,0); 8 | } 9 | } -------------------------------------------------------------------------------- /simple-gulp-Build/app/sass/test.scss: -------------------------------------------------------------------------------- 1 | .p{ 2 | &.p1{ 3 | line-height: 1; 4 | }; 5 | &.p2{ 6 | line-height: 4; 7 | transform:translate3d(30%,30%,0); 8 | } 9 | } -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-util/lib/env.js: -------------------------------------------------------------------------------- 1 | var parseArgs = require('minimist'); 2 | var argv = parseArgs(process.argv.slice(2)); 3 | 4 | module.exports = argv; 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/semver/semver.browser.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/semver/semver.browser.js.gz -------------------------------------------------------------------------------- /simple-gulp-Build/dist/image/tempImg/charles_icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/simple-gulp-Build/dist/image/tempImg/charles_icon128.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/vinyl/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.9" 4 | - "0.10" 5 | after_script: 6 | - npm run coveralls -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/lib/core.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./core.json').reduce(function (acc, x) { 2 | acc[x] = true; 3 | return acc; 4 | }, {}); 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/signal-exit/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - '0.12' 5 | - '0.10' 6 | - iojs 7 | after_success: npm run coverage 8 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/bytes/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --reporter spec \ 5 | --require should 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /simple-gulp-Build/dist/css/page.min.css: -------------------------------------------------------------------------------- 1 | .p.p1{line-height:1;background-color:red}.p.p2{line-height:4;-webkit-transform:translate3d(30%,30%,0);transform:translate3d(30%,30%,0)} -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/body-parser/node_modules/qs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/normalize-package-data/test/fixtures/badscripts.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bad-scripts-package", 3 | "version": "0.0.1", 4 | "scripts": "foo" 5 | } 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/box.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/cd.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/map.png -------------------------------------------------------------------------------- /js-notes/ImagesLazyLoad/README.md: -------------------------------------------------------------------------------- 1 | 2 | 这里例子是jquery的,也就是pc端的。如果在手机端和zepto结合使用的时候,会有问题。可能和我自己开发的其他组件有关系,我最后选择了 3 | echojs,距离的用法就不多讲了。可以访问下面的地址。 4 | https://github.com/toddmotto/echo 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-util/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulplog/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var getLogger = require('glogg'); 4 | 5 | var logger = getLogger('gulplog'); 6 | 7 | module.exports = logger; 8 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/orchestrator/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components 7 | *.orig 8 | .idea 9 | test 10 | .travis.yml 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/pretty-hrtime/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components 7 | *.orig 8 | .idea 9 | test 10 | .travis.yml 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/replace-ext/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.7" 4 | - "0.8" 5 | - "0.9" 6 | - "0.10" 7 | after_script: 8 | - npm run coveralls -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/semver/foot.js.txt: -------------------------------------------------------------------------------- 1 | 2 | })( 3 | typeof exports === 'object' ? exports : 4 | typeof define === 'function' && define.amd ? {} : 5 | semver = {} 6 | ); 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/drive.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/film.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/folder.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/font.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/image.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page.png -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/scss/sassCore/sassCore-3.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/scss/sassCore/sassCore-3.0.gem -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/noop.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through.obj(); 5 | }; 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_add.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_go.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_key.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_red.png -------------------------------------------------------------------------------- /js-notes/jq-api/README.md: -------------------------------------------------------------------------------- 1 | 注释:近期有好多人说JQ很难学不会,我想说的是:理解原理和事件,基本就能写效果了。近几天,我总结了一个简单的API文件, 2 | 方便查找事件,文档,选择器,效果和异步。 3 | 4 | 注释:转载请标注 wnagfeng 创建 5 | 6 | 希望能帮助到大家。有什么地方有问题还请指出。谢谢。 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /\u001b\[(?:[0-9]{1,3}(?:;[0-9]{1,3})*)?[m|K]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/env.js: -------------------------------------------------------------------------------- 1 | var parseArgs = require('minimist'); 2 | var argv = parseArgs(process.argv.slice(2)); 3 | 4 | module.exports = argv; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.12" 6 | - "iojs" 7 | before_install: 8 | - npm install -g npm@~1.4.6 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mkdirp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.12" 6 | - "iojs" 7 | before_install: 8 | - npm install -g npm@~1.4.6 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/controller.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_attach.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_code.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_copy.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_delete.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_edit.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_error.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_excel.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_find.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_gear.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_green.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_link.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_paste.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_save.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_word.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_world.png -------------------------------------------------------------------------------- /rjs/README.md: -------------------------------------------------------------------------------- 1 | 2 | 说明:r.js打包,依赖node环境,grunt组件,requirejs的打包工具。具体不多说,看文件。 3 | 4 | 注释:转载需加 wangfeng 创建 5 | 6 | 解释: 7 | public是应用之前的文件夹 8 | bulit是应用之后的文件夹 9 | page是demo调用文件夹 10 | 11 | 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /\u001b\[(?:[0-9]{1,3}(?:;[0-9]{1,3})*)?[m|K]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/lru-cache/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.8' 4 | - '0.10' 5 | - '0.12' 6 | - 'iojs' 7 | before_install: 8 | - npm install -g npm@latest 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/incorrect_main/index.js: -------------------------------------------------------------------------------- 1 | // this is the actual main file 'index.js', not 'wrong.js' like the package.json would indicate 2 | module.exports = 1; 3 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/without_basedir/main.js: -------------------------------------------------------------------------------- 1 | resolve = require('../../../'); 2 | 3 | module.exports = function(t, cb) { 4 | resolve('mymodule', null, cb); 5 | } 6 | 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_refresh.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_c.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_cd.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_go.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_h.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/spdx-expression-parse/index.js: -------------------------------------------------------------------------------- 1 | var parser = require('./parser.generated.js').parser 2 | 3 | module.exports = function(argument) { 4 | return parser.parse(argument) } 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/body-parser/node_modules/qs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * For Node.js, simply re-export the core `util.deprecate` function. 4 | */ 5 | 6 | module.exports = require('util').deprecate; 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/application_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/application_xp.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_lightning.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_paintbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_paintbrush.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_add.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_code.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_copy.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_cup.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_dvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_dvd.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_edit.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_error.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_excel.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_find.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_flash.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_gear.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_get.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_key.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_link.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_medal.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_paint.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_paste.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_php.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_put.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_ruby.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_stack.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_star.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_text.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_tux.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_width.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_word.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_world.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_zip.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | src: require('./lib/src'), 5 | dest: require('./lib/dest'), 6 | watch: require('glob-watcher') 7 | }; 8 | -------------------------------------------------------------------------------- /simple-gulp-Build/app/css/sass.css: -------------------------------------------------------------------------------- 1 | .p.p1 { 2 | line-height: 1; } 3 | 4 | .p.p2 { 5 | line-height: 4; 6 | -webkit-transform: translate3d(30%, 30%, 0); 7 | transform: translate3d(30%, 30%, 0); } 8 | -------------------------------------------------------------------------------- /simple-gulp-Build/app/css/test.css: -------------------------------------------------------------------------------- 1 | .p.p1 { 2 | line-height: 1; } 3 | 4 | .p.p2 { 5 | line-height: 4; 6 | -webkit-transform: translate3d(30%, 30%, 0); 7 | transform: translate3d(30%, 30%, 0); } 8 | -------------------------------------------------------------------------------- /simple-gulp-Build/app/sass/page.scss: -------------------------------------------------------------------------------- 1 | .p{ 2 | &.p1{ 3 | line-height: 1; 4 | background-color: red; 5 | }; 6 | &.p2{ 7 | line-height: 4; 8 | transform:translate3d(30%,30%,0); 9 | } 10 | } -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_acrobat.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_camera.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_csharp.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_delete.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_magnify.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_office.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_picture.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_swoosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_swoosh.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_vector.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_wrench.png -------------------------------------------------------------------------------- /css-notes/sass/.sass-cache/259edbbeeb91873c7566e0342f11ff978f524544/print.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/.sass-cache/259edbbeeb91873c7566e0342f11ff978f524544/print.scssc -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/dateformat/test/weekofyear/test_weekofyear.js: -------------------------------------------------------------------------------- 1 | var dateFormat = require('../lib/dateformat.js'); 2 | 3 | var val = process.argv[2] || new Date(); 4 | console.log(dateFormat(val, 'W')); 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex'); 3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag 4 | module.exports = re.test.bind(re); 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mkdirp/examples/pow.js: -------------------------------------------------------------------------------- 1 | var mkdirp = require('mkdirp'); 2 | 3 | mkdirp('/tmp/foo/bar/baz', function (err) { 4 | if (err) console.error(err) 5 | else console.log('pow!') 6 | }); 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_code_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_code_red.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_coldfusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_coldfusion.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_compressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_compressed.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_cplusplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_cplusplus.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_database.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_freehand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_freehand.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_horizontal.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_lightning.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_paintbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_paintbrush.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_powerpoint.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_text_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_text_width.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/lib/src/getContents/readDir.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | function readDir(file, cb) { 4 | // do nothing for now 5 | cb(null, file); 6 | } 7 | 8 | module.exports = readDir; 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 默认页面 6 | 7 | 8 | 测试页面 9 | 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/liftoff/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "iojs" 6 | before_install: 7 | - npm update -g npm 8 | matrix: 9 | fast_finish: true 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mime/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var mime = require('./mime.js'); 4 | var file = process.argv[2]; 5 | var type = mime.lookup(file); 6 | 7 | process.stdout.write(type + '\n'); 8 | 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/multipipe/Makefile: -------------------------------------------------------------------------------- 1 | 2 | node_modules: package.json 3 | @npm install 4 | 5 | test: 6 | @./node_modules/.bin/mocha \ 7 | --reporter spec \ 8 | --timeout 100 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/normalize-package-data/AUTHORS: -------------------------------------------------------------------------------- 1 | # Names sorted by how much code was originally theirs. 2 | Isaac Z. Schlueter 3 | Meryn Stol 4 | Robert Kowalski -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/application_xp_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/application_xp_terminal.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_actionscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_actionscript.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_visualstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/gulp-autoRefresh/node_modules/serve-index/public/icons/page_white_visualstudio.png -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | var toString = {}.toString; 2 | 3 | module.exports = Array.isArray || function (arr) { 4 | return toString.call(arr) == '[object Array]'; 5 | }; 6 | -------------------------------------------------------------------------------- /css-notes/sass/.sass-cache/4b574c2b3176a70fe7d6e61db00d135d11f6fc47/_utilities.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/.sass-cache/4b574c2b3176a70fe7d6e61db00d135d11f6fc47/_utilities.scssc -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/scss/sassCore/ext/font-face/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/scss/sassCore/ext/font-face/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/flagged-respawn/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.11" 6 | matrix: 7 | fast_finish: true 8 | allow_failures: 9 | - node_js: 0.11 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulplog/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # gulplog changelog 2 | 3 | ## 1.0.0 4 | 5 | - Initial release 6 | - No implementation changed since initial commit 7 | 8 | ## 0.0.0 9 | 10 | - Experimentation 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/qs/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | 4 | "curly": true, 5 | "latedef": true, 6 | "quotmark": true, 7 | "undef": true, 8 | "unused": true, 9 | "trailing": true 10 | } 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/example/async.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | resolve('tap', { basedir: __dirname }, function (err, res) { 3 | if (err) console.error(err) 4 | else console.log(res) 5 | }); 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer; 2 | 3 | module.exports = function(buf) { 4 | var out = new Buffer(buf.length); 5 | buf.copy(out); 6 | return out; 7 | }; 8 | -------------------------------------------------------------------------------- /simple-gulp-Build/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 默认页面 6 | 7 | 8 | 测试页面 9 | 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/mime.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\mime\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\mime\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/balanced-match/example.js: -------------------------------------------------------------------------------- 1 | var balanced = require('./'); 2 | 3 | console.log(balanced('{', '}', 'pre{in{nested}}post')); 4 | console.log(balanced('{', '}', 'pre{first}between{second}post')); 5 | 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/examples/nodemon/app.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | var app = module.exports = require('express')() 4 | 5 | app 6 | .get('/', function(req, res) { 7 | res.send('Hello World') 8 | }) 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | 9 | [*.js] 10 | indent_size = 2 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * mime-db 3 | * Copyright(c) 2014 Jonathan Ong 4 | * MIT Licensed 5 | */ 6 | 7 | /** 8 | * Module exports. 9 | */ 10 | 11 | module.exports = require('./db.json') 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/process-nextick-args/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.11" 6 | - "0.12" 7 | - "1.7.1" 8 | - 1 9 | - 2 10 | - 3 11 | - 4 12 | - 5 13 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /simple-gulp-Build/app/css/page.css: -------------------------------------------------------------------------------- 1 | .p.p1 { 2 | line-height: 1; 3 | background-color: red; } 4 | 5 | .p.p2 { 6 | line-height: 4; 7 | -webkit-transform: translate3d(30%, 30%, 0); 8 | transform: translate3d(30%, 30%, 0); } 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/gulp.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\gulp\bin\gulp.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\gulp\bin\gulp.js" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex'); 3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag 4 | module.exports = re.test.bind(re); 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/has-gulplog/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var sparkles = require('sparkles'); 4 | 5 | function hasGulplog(){ 6 | return sparkles.exists('gulplog'); 7 | } 8 | 9 | module.exports = hasGulplog; 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/signal-exit/test/fixtures/end-of-execution.js: -------------------------------------------------------------------------------- 1 | var onSignalExit = require('../../') 2 | 3 | onSignalExit(function (code, signal) { 4 | console.log('reached end of execution, ' + code + ', ' + signal) 5 | }) 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/websocket-driver/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | All projects under the [Faye](https://github.com/faye) umbrella are covered by 4 | the [Code of Conduct](https://github.com/faye/code-of-conduct). 5 | -------------------------------------------------------------------------------- /js-notes/jq-plus/README.md: -------------------------------------------------------------------------------- 1 | 注释:自定义插件越来越多,但是有的插件太大了,里面有很多我们用不到的东西。这样我们再换心思去修改什么的很浪费时间,所以,我们可以 2 | 自己试着写组件。这样以后自己可以扩展可修改性也是很大的。当然现在已经有很多优良的plus,也很好的调用,这样的我们就没有必须重新写了 3 | ,我们看下构造和用法就OK了。
4 | 我自己写的plus有问题的,请及时联系本人。外面有联系方式。谢谢。 5 | 6 | 7 | -------------------------------------------------------------------------------- /css-notes/mobile/remove-uc-foucs-border: -------------------------------------------------------------------------------- 1 | 2 | 说明:uc浏览器是去边框焦点这个是一个很不怎么好解决的问题。 3 | 4 | 注释:转载需加 wangfeng 创建 5 | 6 | 解决办法是:给body或者input标签加: 7 | -webkit-tap-highlight-color: transparent; 8 | tap-highlight-color: transparent; 9 | 10 | 11 | -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/scss/sassCore/ext/font-face/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/scss/sassCore/ext/font-face/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/scss/sassCore/ext/font-face/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/scss/sassCore/ext/font-face/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/scss/sassCore/ext/font-face/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/scss/sassCore/ext/font-face/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/mkdirp.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\mkdirp\bin\cmd.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\mkdirp\bin\cmd.js" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/semver.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\semver\bin\semver" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\semver\bin\semver" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/user-home.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\user-home\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\user-home\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex'); 3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag 4 | module.exports = re.test.bind(re); 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer; 2 | 3 | module.exports = function(buf) { 4 | var out = new Buffer(buf.length); 5 | buf.copy(out); 6 | return out; 7 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/liftoff/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "undef": true, 3 | "unused": true, 4 | "node": true, 5 | "esnext": true, 6 | "expr": true, 7 | "globals": { 8 | "describe": true, 9 | "it": true 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/ordered-read-streams/.npmignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | coverage 11 | pids 12 | logs 13 | results 14 | node_modules 15 | 16 | npm-debug.log 17 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer; 2 | 3 | module.exports = function(buf) { 4 | var out = new Buffer(buf.length); 5 | buf.copy(out); 6 | return out; 7 | }; 8 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/concat-map/example/map.js: -------------------------------------------------------------------------------- 1 | var concatMap = require('../'); 2 | var xs = [ 1, 2, 3, 4, 5, 6 ]; 3 | var ys = concatMap(xs, function (x) { 4 | return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; 5 | }); 6 | console.dir(ys); 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js: -------------------------------------------------------------------------------- 1 | module.exports = "The tools we use have a profound (and devious!) influence on our thinking habits, and, therefore, on our thinking abilities.- E. Dijkstra" 2 | -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/3f57fe86e1366dec7084ff5ab9bc159d04b8c7fa/_base.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/3f57fe86e1366dec7084ff5ab9bc159d04b8c7fa/_base.scssc -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_css3.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_css3.scssc -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_grid.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_grid.scssc -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/dateformat.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\dateformat\bin\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\dateformat\bin\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/strip-indent.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\strip-indent\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\strip-indent\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/examples/nodemon/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | var app = require('./app') 4 | var port = process.env.PORT || 8080 5 | 6 | app.listen(port, function() { 7 | console.log(`listening on port ${port}.`) 8 | }) 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/is/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "is", 3 | "repo": "enricomarino/is", 4 | "description": "The definitive type testing library", 5 | "version": "2.2.0", 6 | "dependencies": {}, 7 | "scripts": ["index.js"] 8 | } 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/signal-exit/test/fixtures/exit.js: -------------------------------------------------------------------------------- 1 | var onSignalExit = require('../../') 2 | 3 | onSignalExit(function (code, signal) { 4 | console.log('exited with process.exit(), ' + code + ', ' + signal) 5 | }) 6 | 7 | process.exit(32) 8 | -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/3f57fe86e1366dec7084ff5ab9bc159d04b8c7fa/_icons.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/3f57fe86e1366dec7084ff5ab9bc159d04b8c7fa/_icons.scssc -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_mixin.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_mixin.scssc -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_reset.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_reset.scssc -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/fa629066f1aa846301e5745a027193614ce9330e/common.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/fa629066f1aa846301e5745a027193614ce9330e/common.scssc -------------------------------------------------------------------------------- /gulp-autoRefresh/app/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 测试 6 | 7 | 8 | 9 | 这是一个测试页面 10 | 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/index.js: -------------------------------------------------------------------------------- 1 | var core = require('./lib/core'); 2 | exports = module.exports = require('./lib/async'); 3 | exports.core = core; 4 | exports.isCore = function (x) { return core[x] }; 5 | exports.sync = require('./lib/sync'); 6 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/bytes/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bytes", 3 | "description": "byte size string parser / serializer", 4 | "keywords": ["bytes", "utility"], 5 | "version": "0.2.1", 6 | "scripts": ["index.js"] 7 | } 8 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * mime-db 3 | * Copyright(c) 2014 Jonathan Ong 4 | * MIT Licensed 5 | */ 6 | 7 | /** 8 | * Module exports. 9 | */ 10 | 11 | module.exports = require('./db.json') 12 | -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/3f57fe86e1366dec7084ff5ab9bc159d04b8c7fa/_variable.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/3f57fe86e1366dec7084ff5ab9bc159d04b8c7fa/_variable.scssc -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/3f57fe86e1366dec7084ff5ab9bc159d04b8c7fa/_wap_mixin.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/3f57fe86e1366dec7084ff5ab9bc159d04b8c7fa/_wap_mixin.scssc -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/3f57fe86e1366dec7084ff5ab9bc159d04b8c7fa/_web_mixin.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/3f57fe86e1366dec7084ff5ab9bc159d04b8c7fa/_web_mixin.scssc -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_setting.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_setting.scssc -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/array-differ/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (arr) { 3 | var rest = [].concat.apply([], [].slice.call(arguments, 1)); 4 | return arr.filter(function (el) { 5 | return rest.indexOf(el) === -1; 6 | }); 7 | }; 8 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/qs/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @node node_modules/lab/bin/lab 3 | test-cov: 4 | @node node_modules/lab/bin/lab -t 100 5 | test-cov-html: 6 | @node node_modules/lab/bin/lab -r html -o coverage.html 7 | 8 | .PHONY: test test-cov test-cov-html -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/.bin/strip-bom.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\strip-bom\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\strip-bom\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /html-notes/html5/progress.md: -------------------------------------------------------------------------------- 1 | 注释:进度条是我们经常用到的一个东西。特别是有交互项目的时候,我们可以用xhtml1.0的标签进度布局,以条形进度为例,我们设计对应的宽 2 | 度就好了。可以达到我们需要的效果,起码我们需要两个标签,一个外面控制,一个做内部进步展示。html有一个标签progress(闭合标签)一个 3 | 就能达到我们需要的标准了。所以何乐而不为那?
4 | <progress value="80" max="100"></progress> 5 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/node_modules/.bin/has-ansi.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\has-ansi\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\has-ansi\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/.bin/has-ansi.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\has-ansi\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\has-ansi\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/body-parser/node_modules/qs/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | 4 | "curly": true, 5 | "latedef": true, 6 | "quotmark": true, 7 | "undef": true, 8 | "unused": true, 9 | "trailing": true 10 | } 11 | -------------------------------------------------------------------------------- /css-notes/mobile/images-height.md: -------------------------------------------------------------------------------- 1 | 注释:最近发现一个奇怪的问题,moblie上img写了width:100%的时候下面会出现2-3个像素的空隙。反复检查最后了解到,是忘加了一个属性。当 2 | 然像sass和一样组件中都有了,但是难免有一些页面是单独出来的,这时候我们有时会对其定义不是很周密,故写次文章。 3 | 4 | 转载:标注 wangfeng 创建 5 | 6 | img { 7 | border: 0; 8 | vertical-align: middle; 9 | } 10 | -------------------------------------------------------------------------------- /css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_media-queries.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islittle/Web-Developer/HEAD/css-notes/sass/base-of-user-defined/.sass-cache/8e30ec6106331d21896e81118b10ea79c1fc9b2f/_media-queries.scssc -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/node_modules/.bin/strip-ansi.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\strip-ansi\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\strip-ansi\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/.bin/strip-ansi.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\strip-ansi\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\strip-ansi\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/nonstring.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var resolve = require('../'); 3 | 4 | test('nonstring', function (t) { 5 | t.plan(1); 6 | resolve(555, function (err, res, pkg) { 7 | t.ok(err); 8 | }); 9 | }); 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/lib/dest/writeContents/writeDir.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var mkdirp = require('mkdirp'); 4 | 5 | function writeDir (writePath, file, cb) { 6 | mkdirp(writePath, file.stat.mode, cb); 7 | } 8 | 9 | module.exports = writeDir; 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/is-finite/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var numberIsNan = require('number-is-nan'); 3 | 4 | module.exports = Number.isFinite || function (val) { 5 | return !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity); 6 | }; 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/node_modules/.bin/supports-color.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\supports-color\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\supports-color\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-util/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; 8 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/.bin/supports-color.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\supports-color\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\supports-color\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /establishment-of-demand.md: -------------------------------------------------------------------------------- 1 |

大家好:

2 | 3 |

本人业余时间兼职网站建设,已经有很多作品,客户的满意度很高。为了原来客户的利息,在这里就不列出。不管是:商城,微店,门户网,手机站,微网站,旅游网....等等,欢迎有需求的加我QQ:769407183,进行详细了解。 并备注一下自己有建站需要的或者来源,以免不小心被删掉或拒绝。

4 | 5 |

web-developer: wangfeng islittle@outlook.com

6 | 7 | 8 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/content-type/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.1 / 2015-02-13 2 | ================== 3 | 4 | * Improve missing `Content-Type` header error message 5 | 6 | 1.0.0 / 2015-02-01 7 | ================== 8 | 9 | * Initial implementation, derived from `media-typer@0.3.0` 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/redent/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var stripIndent = require('strip-indent'); 3 | var indentString = require('indent-string'); 4 | 5 | module.exports = function (str, count, indent) { 6 | return indentString(stripIndent(str), indent || ' ', count || 0); 7 | }; 8 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mkdirp/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /js-notes/angularjs/angularjs-passing-data-between-pages.md: -------------------------------------------------------------------------------- 1 | 2 | 注释:我们知道的页面间传输数据的方法有很多,下面是一个对angular框架页面间传输数据 3 | 4 | [点击链接](http://stackoverflow.com/questions/22408790/angularjs-passing-data-between-pages): 5 | http://stackoverflow.com/questions/22408790/angularjs-passing-data-between-pages 6 | 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/is-arrayish/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function isArrayish(obj) { 4 | if (!obj) { 5 | return false; 6 | } 7 | 8 | return obj instanceof Array || Array.isArray(obj) || 9 | (obj.length >= 0 && obj.splice instanceof Function); 10 | }; 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/vinyl/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; -------------------------------------------------------------------------------- /rjs/public/js/pagemodule1.js: -------------------------------------------------------------------------------- 1 | require.config({ 2 | //路径的是相对html的。 3 | baseUrl: '../public/js/', 4 | paths: { 5 | 'jquery': 'jquery-1.9.1' 6 | } 7 | }); 8 | define(['event', 'selector','jquery'], function(E, S, $) { 9 | $('p').html('引用本地jquery版本号'+jQuery.fn.jquery+'输出:hello world!') 10 | }); -------------------------------------------------------------------------------- /gulp-autoRefresh/app/test.js: -------------------------------------------------------------------------------- 1 | 2 | var http = require('http'); 3 | 4 | http.createServer(function (req, res) { 5 | res.writeHead(200, {'Content-Type': 'text/plain'}); 6 | res.end('Hello Worlds\n'); 7 | }).listen(1337, "127.0.0.1"); 8 | 9 | console.log('Server running at http://127.0.0.1:1337/14568'); -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/vinyl/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/body-parser/node_modules/qs/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @node node_modules/lab/bin/lab 3 | test-cov: 4 | @node node_modules/lab/bin/lab -t 100 5 | test-cov-html: 6 | @node node_modules/lab/bin/lab -r html -o coverage.html 7 | 8 | .PHONY: test test-cov test-cov-html -------------------------------------------------------------------------------- /js-notes/nendCare/safari-format-time.md: -------------------------------------------------------------------------------- 1 | 2 | > 格式化时间常用,safari中格式化的时候2017.03.29和2017-03-29都是会报错的,输出结果为NaN 3 | 4 | #safari-format-time 5 | 6 | *注意:转载请说明来源 wangfeng [islittle.github.io](https://islittle.github.io) 创建* 7 | 8 | 需要转化为原生格式 9 | 10 | ``` 11 | yyyy/mm/dd 12 | yyyy/mm/dd hh:mm:ss 13 | ``` 14 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/signal-exit/test/fixtures/sigpipe.js: -------------------------------------------------------------------------------- 1 | var onSignalExit = require('../..') 2 | onSignalExit(function (code, signal) { 3 | console.error('onSignalExit(%j,%j)', code, signal) 4 | }) 5 | setTimeout(function () { 6 | console.log('hello') 7 | }) 8 | process.kill(process.pid, 'SIGPIPE') 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/builtin-modules/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var blacklist = [ 4 | 'freelist', 5 | 'sys' 6 | ]; 7 | 8 | module.exports = Object.keys(process.binding('natives')).filter(function (el) { 9 | return !/^_|^internal|\//.test(el) && blacklist.indexOf(el) === -1; 10 | }).sort(); 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/connect-livereload/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.9" 6 | 7 | before_script: 8 | - "npm install" 9 | 10 | script: 11 | - "node_modules/mocha/bin/mocha" 12 | 13 | notifications: 14 | email: andi.neck@intesso.com 15 | 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- 1 | // Load modules 2 | 3 | var Stringify = require('./stringify'); 4 | var Parse = require('./parse'); 5 | 6 | 7 | // Declare internals 8 | 9 | var internals = {}; 10 | 11 | 12 | module.exports = { 13 | stringify: Stringify, 14 | parse: Parse 15 | }; 16 | -------------------------------------------------------------------------------- /simple-gulp-Build/dist/test.html: -------------------------------------------------------------------------------- 1 | 测试这是一个测试页面 by Little -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp/completion/fish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env fish 2 | 3 | # Usage: 4 | # 5 | # To enable fish completion for gulp, add the following line to 6 | # your ~/.config/fish/config.fish file: 7 | # 8 | # gulp --completion=fish | source 9 | 10 | complete -c gulp -a "(gulp --tasks-simple)" -f 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | complexity.md 19 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/rechoir/lib/extension.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | const EXTRE = /^[.]?[^.]+([.].*)$/; 4 | 5 | module.exports = function (input) { 6 | var extension = EXTRE.exec(path.basename(input)); 7 | if (!extension) { 8 | return; 9 | } 10 | return extension[1]; 11 | }; 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/signal-exit/test/fixtures/load-unload.js: -------------------------------------------------------------------------------- 1 | // just be silly with calling these functions a bunch 2 | // mostly just to get coverage of the guard branches 3 | var onSignalExit = require('../../') 4 | onSignalExit.load() 5 | onSignalExit.load() 6 | onSignalExit.unload() 7 | onSignalExit.unload() 8 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/signal-exit/test/fixtures/sigterm.js: -------------------------------------------------------------------------------- 1 | var onSignalExit = require('../../') 2 | 3 | onSignalExit(function (code, signal) { 4 | console.log('exited with sigterm, ' + code + ', ' + signal) 5 | }) 6 | 7 | setTimeout(function () {}, 1000) 8 | 9 | process.kill(process.pid, 'SIGTERM') 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/spdx-correct/README.md: -------------------------------------------------------------------------------- 1 | ```javascript 2 | var correct = require('spdx-correct'); 3 | var assert = require('assert'); 4 | 5 | assert.equal(correct('mit'), 'MIT') 6 | 7 | assert.equal(correct('Apache 2'), 'Apache-2.0') 8 | 9 | assert(correct('No idea what license') === null) 10 | ``` 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/node_modules/minimatch/test/extglob-ending-with-state-char.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test 2 | var minimatch = require('../') 3 | 4 | test('extglob ending with statechar', function(t) { 5 | t.notOk(minimatch('ax', 'a?(b*)')) 6 | t.ok(minimatch('ax', '?(a*|b)')) 7 | t.end() 8 | }) 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/is-builtin-module/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var builtinModules = require('builtin-modules'); 3 | 4 | module.exports = function (str) { 5 | if (typeof str !== 'string') { 6 | throw new TypeError('Expected a string'); 7 | } 8 | 9 | return builtinModules.indexOf(str) !== -1; 10 | }; 11 | -------------------------------------------------------------------------------- /simple-gulp-Build/dist/page/page1.html: -------------------------------------------------------------------------------- 1 | page测试这是一个测试页面 by Little -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mime/build/build.js: -------------------------------------------------------------------------------- 1 | var db = require('mime-db'); 2 | 3 | var mapByType = {}; 4 | Object.keys(db).forEach(function(key) { 5 | var extensions = db[key].extensions; 6 | if (extensions) { 7 | mapByType[key] = extensions; 8 | } 9 | }); 10 | 11 | console.log(JSON.stringify(mapByType)); 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/trim-newlines/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var fn = module.exports = function (x) { 4 | return fn.end(fn.start(x)); 5 | }; 6 | 7 | fn.start = function (x) { 8 | return x.replace(/^[\r\n]+/, ''); 9 | }; 10 | 11 | fn.end = function (x) { 12 | return x.replace(/[\r\n]+$/, ''); 13 | }; 14 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/escape-string-regexp/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g; 4 | 5 | module.exports = function (str) { 6 | if (typeof str !== 'string') { 7 | throw new TypeError('Expected a string'); 8 | } 9 | 10 | return str.replace(matchOperatorsRe, '\\$&'); 11 | }; 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/node_modules/glob/examples/g.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "test/a/**/[cg]/../[cg]" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true, sync:true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/node_modules/glob/examples/usr-local.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "{./*/*,/*,/usr/local/*}" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mini-lr/scripts/post-change: -------------------------------------------------------------------------------- 1 | echo curl -X POST http://localhost:35729/changed \ 2 | -H "Content-Type: application/json" \ 3 | -d "{ \"files\": true }" 4 | 5 | echo 6 | 7 | curl -X POST http://localhost:35729/changed \ 8 | -H "Content-Type: application/json" \ 9 | -d "{ \"files\": true }" 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tildify/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var path = require('path'); 3 | var osHomedir = require('os-homedir'); 4 | var home = osHomedir(); 5 | 6 | module.exports = function (str) { 7 | str = path.normalize(str) + path.sep; 8 | return str.replace(home + path.sep, '~' + path.sep).slice(0, -1); 9 | }; 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/scripts/post-change: -------------------------------------------------------------------------------- 1 | echo curl -X POST http://localhost:35729/changed \ 2 | -H "Content-Type: application/json" \ 3 | -d "{ \"files\": true }" 4 | 5 | echo 6 | 7 | curl -X POST http://localhost:35729/changed \ 8 | -H "Content-Type: application/json" \ 9 | -d "{ \"files\": true }" 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/websocket-extensions/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ### 0.1.1 / 2015-02-19 2 | 3 | * Prevent sessions being closed before they have finished processing messages 4 | * Add a callback to `Extensions.close()` so the caller can tell when it's safe to close the socket 5 | 6 | ### 0.1.0 / 2014-12-12 7 | 8 | * Initial release 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/body-parser/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- 1 | // Load modules 2 | 3 | var Stringify = require('./stringify'); 4 | var Parse = require('./parse'); 5 | 6 | 7 | // Declare internals 8 | 9 | var internals = {}; 10 | 11 | 12 | module.exports = { 13 | stringify: Stringify, 14 | parse: Parse 15 | }; 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/clone-stats/index.js: -------------------------------------------------------------------------------- 1 | var Stat = require('fs').Stats 2 | 3 | module.exports = cloneStats 4 | 5 | function cloneStats(stats) { 6 | var replacement = new Stat 7 | 8 | Object.keys(stats).forEach(function(key) { 9 | replacement[key] = stats[key] 10 | }) 11 | 12 | return replacement 13 | } 14 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": true, 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "unused": true, 11 | "boss": true, 12 | "eqnull": true, 13 | "node": true, 14 | "es5": true 15 | } 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/minimist/test/parse_modified.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('parse with modifier functions' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b', '123' ], { boolean: 'b' }); 8 | t.deepEqual(argv, { b: true, _: [123] }); 9 | }); 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/normalize-package-data/lib/safe_format.js: -------------------------------------------------------------------------------- 1 | var util = require('util') 2 | 3 | module.exports = function() { 4 | var args = Array.prototype.slice.call(arguments, 0) 5 | args.forEach(function(arg) { 6 | if (!arg) throw new TypeError('Bad arguments.') 7 | }) 8 | return util.format.apply(null, arguments) 9 | } -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/body-parser/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | complexity.md 19 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/flagged-respawn/test/bin/exit_code.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | const flaggedRespawn = require('../../'); 4 | 5 | flaggedRespawn(['--harmony'], process.argv, function (ready) { 6 | 7 | if (ready) { 8 | setTimeout(function () { 9 | process.exit(100); 10 | }, 100); 11 | } 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-util/lib/combine.js: -------------------------------------------------------------------------------- 1 | var pipeline = require('multipipe'); 2 | 3 | module.exports = function(){ 4 | var args = arguments; 5 | if (args.length === 1 && Array.isArray(args[0])) { 6 | args = args[0]; 7 | } 8 | return function(){ 9 | return pipeline.apply(pipeline, args); 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/map-obj/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (obj, cb) { 3 | var ret = {}; 4 | var keys = Object.keys(obj); 5 | 6 | for (var i = 0; i < keys.length; i++) { 7 | var key = keys[i]; 8 | var res = cb(key, obj[key], obj); 9 | ret[res[0]] = res[1]; 10 | } 11 | 12 | return ret; 13 | }; 14 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mini-lr/examples/express/styles/site.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 50px; 3 | font-family: sans-serif; 4 | font-size: 14px; 5 | } 6 | 7 | .test-lr { 8 | padding: 2em; 9 | color: #444; 10 | /* color: red; */ 11 | font-weight: bolder; 12 | 13 | border: #ccc; 14 | background-color: #dedede; 15 | } 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/examples/express/styles/site.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 50px; 3 | font-family: sans-serif; 4 | font-size: 14px; 5 | } 6 | 7 | .test-lr { 8 | padding: 2em; 9 | color: #444; 10 | /* color: red; */ 11 | font-weight: bolder; 12 | 13 | border: #ccc; 14 | background-color: #dedede; 15 | } 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/replace-ext/index.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | module.exports = function(npath, ext) { 4 | if (typeof npath !== 'string') return npath; 5 | if (npath.length === 0) return npath; 6 | 7 | var nFileName = path.basename(npath, path.extname(npath))+ext; 8 | return path.join(path.dirname(npath), nFileName); 9 | }; -------------------------------------------------------------------------------- /simple-gulp-Build/dist/page/page.html: -------------------------------------------------------------------------------- 1 | page测试这是一个测试页面 by Little

15646

-------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/event-stream/test/helper/index.js: -------------------------------------------------------------------------------- 1 | var tape = require('tape') 2 | 3 | module.exports = function (m) { 4 | if(m.parent) return 5 | for(var name in m.exports) { 6 | tape(name, function (t) { 7 | console.log('start', name) 8 | t.done = t.end 9 | m.exports[name](t) 10 | }) 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('parse with modifier functions' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b', '123' ], { boolean: 'b' }); 8 | t.deepEqual(argv, { b: true, _: ['123'] }); 9 | }); 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/node.extend/History.md: -------------------------------------------------------------------------------- 1 | ## 1.0.1 / 2013-04-02 2 | 3 | - Fix tests 4 | 5 | 6 | 7 | ## 1.0.0 / 2012-02-28 8 | 9 | - Add tests for the stable release 10 | 11 | 12 | 13 | ## 0.0.2 / 2012-01-11 14 | 15 | - Add repository to package.json 16 | 17 | 18 | 19 | ## 0.0.1 / 2012-01-10 20 | 21 | - Initial release 22 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/body-parser/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- 1 | // Load modules 2 | 3 | var Stringify = require('./stringify'); 4 | var Parse = require('./parse'); 5 | 6 | 7 | // Declare internals 8 | 9 | var internals = {}; 10 | 11 | 12 | module.exports = { 13 | stringify: Stringify, 14 | parse: Parse 15 | }; 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/lib/dest/writeContents/writeBuffer.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var fs = require('graceful-fs'); 4 | 5 | function writeBuffer(writePath, file, cb) { 6 | var opt = { 7 | mode: file.stat.mode 8 | }; 9 | 10 | fs.writeFile(writePath, file.contents, opt, cb); 11 | } 12 | 13 | module.exports = writeBuffer; 14 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/event-stream/test/stringify.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | var es = require('../') 5 | 6 | exports['handle buffer'] = function (t) { 7 | 8 | 9 | es.stringify().on('data', function (d) { 10 | t.equal(d.trim(), JSON.stringify('HELLO')) 11 | t.end() 12 | }).write(new Buffer('HELLO')) 13 | 14 | } 15 | require('./helper')(module) 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/node_modules/body-parser/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | complexity.md 19 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/mime: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../mime/cli.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../mime/cli.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/combine.js: -------------------------------------------------------------------------------- 1 | var pipeline = require('multipipe'); 2 | 3 | module.exports = function(){ 4 | var args = arguments; 5 | if (args.length === 1 && Array.isArray(args[0])) { 6 | args = args[0]; 7 | } 8 | return function(){ 9 | return pipeline.apply(pipeline, args); 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/minimist/test/parse_modified.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('parse with modifier functions' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b', '123' ], { boolean: 'b' }); 8 | t.deepEqual(argv, { b: true, _: ['123'] }); 9 | }); 10 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp/lib/taskTree.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function(tasks) { 4 | return Object.keys(tasks) 5 | .reduce(function(prev, task) { 6 | prev.nodes.push({ 7 | label: task, 8 | nodes: tasks[task].dep, 9 | }); 10 | return prev; 11 | }, { 12 | nodes: [], 13 | }); 14 | }; 15 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl/lib/inspectStream.js: -------------------------------------------------------------------------------- 1 | var isStream = require('./isStream'); 2 | 3 | module.exports = function(stream) { 4 | if (!isStream(stream)) return; 5 | 6 | var streamType = stream.constructor.name; 7 | // avoid StreamStream 8 | if (streamType === 'Stream') streamType = ''; 9 | 10 | return '<'+streamType+'Stream>'; 11 | }; 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/globule/node_modules/glob/test/zz-cleanup.js: -------------------------------------------------------------------------------- 1 | // remove the fixtures 2 | var tap = require("tap") 3 | , rimraf = require("rimraf") 4 | , path = require("path") 5 | 6 | tap.test("cleanup fixtures", function (t) { 7 | rimraf(path.resolve(__dirname, "a"), function (er) { 8 | t.ifError(er, "removed") 9 | t.end() 10 | }) 11 | }) 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mini-lr/examples/express/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "express-lr-sample", 3 | "version": "0.0.0", 4 | "description": "ERROR: No README.md file found!", 5 | "main": "server.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "start": "DEBUG='minilr minilr:*' node server.js" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/examples/express/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "express-lr-sample", 3 | "version": "0.0.0", 4 | "description": "ERROR: No README.md file found!", 5 | "main": "server.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "start": "DEBUG='tinylr tinylr:*' node server.js" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/gulp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../gulp/bin/gulp.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../gulp/bin/gulp.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/defaults/index.js: -------------------------------------------------------------------------------- 1 | var clone = require('clone'); 2 | 3 | module.exports = function(options, defaults) { 4 | options = options || {}; 5 | 6 | Object.keys(defaults).forEach(function(key) { 7 | if (typeof options[key] === 'undefined') { 8 | options[key] = clone(defaults[key]); 9 | } 10 | }); 11 | 12 | return options; 13 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/lib/src/getContents/streamFile.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var fs = require('graceful-fs'); 4 | var stripBom = require('strip-bom'); 5 | 6 | function streamFile(file, cb) { 7 | file.contents = fs.createReadStream(file.path) 8 | .pipe(stripBom.stream()); 9 | 10 | cb(null, file); 11 | } 12 | 13 | module.exports = streamFile; 14 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/mkdirp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../mkdirp/bin/cmd.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../semver/bin/semver" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../semver/bin/semver" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/user-home: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../user-home/cli.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../user-home/cli.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /rjs/public/js/pagemodule2.js: -------------------------------------------------------------------------------- 1 | require.config({ 2 | baseUrl: 'http://code.jquery.com/', 3 | paths: { 4 | 'jquery': 'jquery-1.11.3' 5 | } 6 | }); 7 | 8 | require(['jquery','event', 'selector'], function($, E, S) { 9 | //下面这个来测试时错误的,因为require都是load结束以后才开始执行的,document.write是加载的时候要写进去 10 | //document.write('测试打印'); 11 | $('html').text('远程引用jquery版本号:'+jQuery.fn.jquery) 12 | }); -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/core.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var resolve = require('../'); 3 | 4 | test('core modules', function (t) { 5 | t.ok(resolve.isCore('fs')); 6 | t.ok(resolve.isCore('net')); 7 | t.ok(resolve.isCore('http')); 8 | 9 | t.ok(!resolve.isCore('seq')); 10 | t.ok(!resolve.isCore('../')); 11 | t.end(); 12 | }); 13 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/vinyl/lib/inspectStream.js: -------------------------------------------------------------------------------- 1 | var isStream = require('./isStream'); 2 | 3 | module.exports = function(stream) { 4 | if (!isStream(stream)) return; 5 | 6 | var streamType = stream.constructor.name; 7 | // avoid StreamStream 8 | if (streamType === 'Stream') streamType = ''; 9 | 10 | return '<'+streamType+'Stream>'; 11 | }; 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/dateformat: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../dateformat/bin/cli.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../dateformat/bin/cli.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/.bin/strip-indent: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../strip-indent/cli.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../strip-indent/cli.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/replaceExtension.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | module.exports = function(npath, ext) { 4 | if (typeof npath !== 'string') return npath; 5 | if (npath.length === 0) return npath; 6 | 7 | var nFileName = path.basename(npath, path.extname(npath))+ext; 8 | return path.join(path.dirname(npath), nFileName); 9 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mini-lr/scripts/phantom-stop: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pidfile=tmp/phantomjs.pid 4 | 5 | warn () { 6 | echo $1 7 | exit 1 8 | } 9 | 10 | [ -e $pidfile ] || warn "PhantomJS not started (no pid file found in tmp/)" 11 | 12 | echo "Getting pid" 13 | pid=$(cat $pidfile) 14 | 15 | echo "Killing PhantomJS with pid $pid" 16 | kill $pid 17 | 18 | rm $pidfile 19 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/rechoir/lib/normalize.js: -------------------------------------------------------------------------------- 1 | function normalizer (config) { 2 | if (typeof config === 'string') { 3 | return { 4 | module: config 5 | } 6 | } 7 | return config; 8 | }; 9 | 10 | module.exports = function (config) { 11 | if (Array.isArray(config)) { 12 | return config.map(normalizer); 13 | } 14 | return normalizer(config); 15 | }; 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/tiny-lr/scripts/phantom-stop: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pidfile=tmp/phantomjs.pid 4 | 5 | warn () { 6 | echo $1 7 | exit 1 8 | } 9 | 10 | [ -e $pidfile ] || warn "PhantomJS not started (no pid file found in tmp/)" 11 | 12 | echo "Getting pid" 13 | pid=$(cat $pidfile) 14 | 15 | echo "Killing PhantomJS with pid $pid" 16 | kill $pid 17 | 18 | rm $pidfile 19 | -------------------------------------------------------------------------------- /js-notes/ajax/README.md: -------------------------------------------------------------------------------- 1 |

AJAX

2 | AJAX就是异步 JavaScript 和 XML,是一种用于创建快速动态网页的技术。 3 | 通过在后台与服务器进行少量数据交换,AJAX 可以使网页实现异步更新。这意味着可以在不重新加载整个网页的情况下,对网页的某部分进行更 4 | 新。从而减少服务的负荷压力。 5 | 传统的网页(不使用AJAX的情况下)如果需要更新内容,必需重载整个网页面,从而延长了加载的速度,这是硬伤。 6 | AJAX 基于已有的标准。这些标准已被开发者使用多年。 7 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-util/lib/buffer.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function(fn) { 4 | var buf = []; 5 | var end = function(cb) { 6 | this.push(buf); 7 | cb(); 8 | if(fn) fn(null, buf); 9 | }; 10 | var push = function(data, enc, cb) { 11 | buf.push(data); 12 | cb(); 13 | }; 14 | return through.obj(push, end); 15 | }; 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/is-arrayish/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | 10 | [*.coffee] 11 | indent_style = space 12 | 13 | [{package.json,*.yml}] 14 | indent_style = space 15 | indent_size = 2 16 | 17 | [*.md] 18 | trim_trailing_whitespace = false 19 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/liftoff/lib/file_search.js: -------------------------------------------------------------------------------- 1 | const findup = require('findup-sync'); 2 | 3 | module.exports = function (search, paths) { 4 | var path; 5 | var len = paths.length; 6 | for (var i = 0; i < len; i++) { 7 | if (path) { 8 | break; 9 | } else { 10 | path = findup(search, {cwd: paths[i], nocase: true}); 11 | } 12 | } 13 | return path; 14 | }; 15 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/node_modules/.bin/has-ansi: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../has-ansi/cli.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../has-ansi/cli.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/.bin/has-ansi: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../has-ansi/cli.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../has-ansi/cli.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/log.js: -------------------------------------------------------------------------------- 1 | var colors = require('./colors'); 2 | var date = require('./date'); 3 | 4 | module.exports = function(){ 5 | var time = '['+colors.grey(date(new Date(), 'HH:MM:ss'))+']'; 6 | var args = Array.prototype.slice.call(arguments); 7 | args.unshift(time); 8 | console.log.apply(console, args); 9 | return this; 10 | }; 11 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/util-deprecate/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.2 / 2015-10-07 3 | ================== 4 | 5 | * use try/catch when checking `localStorage` (#3, @kumavis) 6 | 7 | 1.0.1 / 2014-11-25 8 | ================== 9 | 10 | * browser: use `console.warn()` for deprecation calls 11 | * browser: more jsdocs 12 | 13 | 1.0.0 / 2014-04-30 14 | ================== 15 | 16 | * initial commit 17 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/.bin/strip-bom: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../strip-bom/cli.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../strip-bom/cli.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /js-notes/jq-plus/local-image-compressed: -------------------------------------------------------------------------------- 1 | 2 | 说明:现在手机页面的需求越来越多了,储存啊,加载啊,上传啊。。。下面列举一下,手机图片常用的插件。 3 | 4 | 注释:转载需加 wangfeng 创建 5 | 6 | 1.手机预览插件photoswipe http://photoswipe.com/ 7 | 8 | 2.megapix-image插件 使用Canvas压缩图片上传 解决手机端图片上传功能的问题 http://www.bubuko.com/infodetail-488590.html 9 | 10 | 3.plupload-2.1.2 js、html压缩图片上传图片神器,手机微信网页上传图片必备神器 11 | 12 | 4.LocalResizeIMG.js和mobileBUGFix.js再加上jq库可以直接兼容pc和移动 13 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/batch/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "batch", 3 | "repo": "visionmedia/batch", 4 | "description": "Async task batching", 5 | "version": "0.5.2", 6 | "keywords": ["batch", "async", "utility", "concurrency", "concurrent"], 7 | "dependencies": { 8 | "component/emitter": "*" 9 | }, 10 | "development": {}, 11 | "scripts": [ 12 | "index.js" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/.bin/strip-ansi: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../strip-ansi/cli.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../strip-ansi/cli.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/node_modules/.bin/strip-ansi: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../strip-ansi/cli.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../strip-ansi/cli.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/mkdirp/bin/usage.txt: -------------------------------------------------------------------------------- 1 | usage: mkdirp [DIR1,DIR2..] {OPTIONS} 2 | 3 | Create each supplied directory including any necessary parent directories that 4 | don't yet exist. 5 | 6 | If the directory already exists, do nothing. 7 | 8 | OPTIONS are: 9 | 10 | -m, --mode If a directory needs to be created, set the mode as an octal 11 | permission string. 12 | 13 | -------------------------------------------------------------------------------- /rjs/page/page2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | requirejs-demo-little 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/gulp-util/lib/buffer.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function(fn) { 4 | var buf = []; 5 | var end = function(cb) { 6 | this.push(buf); 7 | cb(); 8 | if(fn) fn(null, buf); 9 | }; 10 | var push = function(data, enc, cb) { 11 | buf.push(data); 12 | cb(); 13 | }; 14 | return through.obj(push, end); 15 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/decamelize/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (str, sep) { 3 | if (typeof str !== 'string') { 4 | throw new TypeError('Expected a string'); 5 | } 6 | 7 | sep = typeof sep === 'undefined' ? '_' : sep; 8 | 9 | return str 10 | .replace(/([a-z\d])([A-Z])/g, '$1' + sep + '$2') 11 | .replace(/([A-Z]+)([A-Z][a-z\d]+)/g, '$1' + sep + '$2') 12 | .toLowerCase(); 13 | }; 14 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/flagged-respawn/test/bin/signal.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | const flaggedRespawn = require('../../'); 4 | 5 | flaggedRespawn(['--harmony'], process.argv, function (ready, child) { 6 | 7 | if (ready) { 8 | setTimeout(function() { 9 | process.exit(); 10 | }, 100); 11 | } else { 12 | console.log('got child!'); 13 | child.kill('SIGHUP'); 14 | } 15 | 16 | }); 17 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/node_modules/.bin/supports-color: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../supports-color/cli.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../supports-color/cli.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/.bin/supports-color: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../supports-color/cli.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../supports-color/cli.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/lib/caller.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { 2 | // see https://code.google.com/p/v8/wiki/JavaScriptStackTraceApi 3 | var origPrepareStackTrace = Error.prepareStackTrace; 4 | Error.prepareStackTrace = function (_, stack) { return stack }; 5 | var stack = (new Error()).stack; 6 | Error.prepareStackTrace = origPrepareStackTrace; 7 | return stack[2].getFileName(); 8 | }; 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/camelcase-keys/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var mapObj = require('map-obj'); 3 | var camelCase = require('camelcase'); 4 | 5 | module.exports = function (input, options) { 6 | options = options || {}; 7 | var exclude = options.exclude || []; 8 | return mapObj(input, function (key, val) { 9 | key = exclude.indexOf(key) === -1 ? camelCase(key) : key; 10 | return [key, val]; 11 | }); 12 | }; 13 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/vinyl/lib/inspectStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | var isStream = require('./isStream'); 3 | 4 | module.exports = function(stream) { 5 | if (!isStream(stream)) return; 6 | 7 | var streamType = stream.constructor.name; 8 | // avoid StreamStream 9 | if (streamType === 'Stream') streamType = ''; 10 | 11 | return '<'+streamType+'Stream>'; 12 | }; -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/readable-stream/readable.js: -------------------------------------------------------------------------------- 1 | exports = module.exports = require('./lib/_stream_readable.js'); 2 | exports.Stream = require('stream'); 3 | exports.Readable = exports; 4 | exports.Writable = require('./lib/_stream_writable.js'); 5 | exports.Duplex = require('./lib/_stream_duplex.js'); 6 | exports.Transform = require('./lib/_stream_transform.js'); 7 | exports.PassThrough = require('./lib/_stream_passthrough.js'); 8 | -------------------------------------------------------------------------------- /css-notes/nth-child-nth-of-type: -------------------------------------------------------------------------------- 1 | 2 | 说明:大家对:nth-child(n)使用都不陌生,里面的n可以是数字也可以是计算式(例如:2n+1,3n+2)不过n都是从0计算,只是0不显示, 3 | 但是nth-child(2)是第二个元素。下面这些你知道吗? 4 | 5 | 转载:需加 wangfeng 创建 6 | 7 | 1.nth-child为同一个父级下面所有子集,不然元素为何。 8 | 9 | 例如: div p:nth-child(2n)和div :nth-child(2n)是一样的 10 | 可用:nth-of-type 11 | 12 | 2.取范围 13 | 14 | 取父级下面第3个到第8个::nth-child(n+3):nth-child(-n+8) 15 | 16 | 同理取同元素: :nth-of-type(n+3):nth-of-type(-n+8) 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/strip-indent/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (str) { 3 | var match = str.match(/^[ \t]*(?=\S)/gm); 4 | 5 | if (!match) { 6 | return str; 7 | } 8 | 9 | var indent = Math.min.apply(Math, match.map(function (el) { 10 | return el.length; 11 | })); 12 | 13 | var re = new RegExp('^[ \\t]{' + indent + '}', 'gm'); 14 | 15 | return indent > 0 ? str.replace(re, '') : str; 16 | }; 17 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/debug/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "debug", 3 | "repo": "visionmedia/debug", 4 | "description": "small debugging utility", 5 | "version": "2.2.0", 6 | "keywords": [ 7 | "debug", 8 | "log", 9 | "debugger" 10 | ], 11 | "main": "browser.js", 12 | "scripts": [ 13 | "browser.js", 14 | "debug.js" 15 | ], 16 | "dependencies": { 17 | "rauchg/ms.js": "0.7.1" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/xtend/mutable.js: -------------------------------------------------------------------------------- 1 | module.exports = extend 2 | 3 | function extend(target) { 4 | for (var i = 1; i < arguments.length; i++) { 5 | var source = arguments[i] 6 | 7 | for (var key in source) { 8 | if (source.hasOwnProperty(key)) { 9 | target[key] = source[key] 10 | } 11 | } 12 | } 13 | 14 | return target 15 | } 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/is/Makefile: -------------------------------------------------------------------------------- 1 | 2 | .PHONY: verify-tag release 3 | 4 | default: release 5 | 6 | verify-tag: 7 | ifndef TAG 8 | $(error TAG is undefined) 9 | endif 10 | 11 | release: verify-tag 12 | @ OLD_TAG=`git describe --abbrev=0 --tags` && \ 13 | npm run minify && \ 14 | replace "$${OLD_TAG/v/}" "$(TAG)" -- *.json README.md && \ 15 | git commit -m "v$(TAG)" *.js *.json README.md && \ 16 | git tag "v$(TAG)" 17 | 18 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/lib/src/getContents/bufferFile.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var fs = require('graceful-fs'); 4 | var stripBom = require('strip-bom'); 5 | 6 | function bufferFile(file, cb) { 7 | fs.readFile(file.path, function (err, data) { 8 | if (err) { 9 | return cb(err); 10 | } 11 | file.contents = stripBom(data); 12 | cb(null, file); 13 | }); 14 | } 15 | 16 | module.exports = bufferFile; 17 | -------------------------------------------------------------------------------- /rjs/page/page1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | requirejs-demo-little 5 | 6 | 7 | 8 | 9 | 10 | 11 | 输出jquery的所有事件

12 | 13 | 14 | -------------------------------------------------------------------------------- /simple-gulp-Build/app/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 测试 6 | 7 | 8 | 9 | 10 | 11 | 12 | 这是一个测试页面 by Little 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/concat-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, fn) { 2 | var res = []; 3 | for (var i = 0; i < xs.length; i++) { 4 | var x = fn(xs[i], i); 5 | if (isArray(x)) res.push.apply(res, x); 6 | else res.push(x); 7 | } 8 | return res; 9 | }; 10 | 11 | var isArray = Array.isArray || function (xs) { 12 | return Object.prototype.toString.call(xs) === '[object Array]'; 13 | }; 14 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/minimist/test/stop_early.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('stops parsing on the first non-option when stopEarly is set', function (t) { 5 | var argv = parse(['--aaa', 'bbb', 'ccc', '--ddd'], { 6 | stopEarly: true 7 | }); 8 | 9 | t.deepEqual(argv, { 10 | aaa: 'bbb', 11 | _: ['ccc', '--ddd'] 12 | }); 13 | 14 | t.end(); 15 | }); 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/signal-exit/test/fixtures/sigint.js: -------------------------------------------------------------------------------- 1 | var onSignalExit = require('../../') 2 | 3 | onSignalExit(function (code, signal) { 4 | console.log('exited with sigint, ' + code + ', ' + signal) 5 | }) 6 | 7 | // For some reason, signals appear to not always be fast enough 8 | // to come in before the process exits. Just a few ticks needed. 9 | setTimeout(function () {}, 1000) 10 | 11 | process.kill(process.pid, 'SIGINT') 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/dateformat/test/test_isoutcdatetime.js: -------------------------------------------------------------------------------- 1 | var assert = require('assert'); 2 | 3 | var dateFormat = require('./../lib/dateformat'); 4 | 5 | describe('isoUtcDateTime', function() { 6 | it('should correctly format the timezone part', function(done) { 7 | var actual = dateFormat('2014-06-02T13:23:21-08:00', 'isoUtcDateTime'); 8 | assert.strictEqual(actual, '2014-06-02T21:23:21Z'); 9 | done(); 10 | }); 11 | }); 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/subdirs.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var resolve = require('../'); 3 | var path = require('path'); 4 | 5 | test('subdirs', function (t) { 6 | t.plan(2); 7 | 8 | var dir = path.join(__dirname, '/subdirs'); 9 | resolve('a/b/c/x.json', { basedir: dir }, function (err, res) { 10 | t.ifError(err); 11 | t.equal(res, path.join(dir, 'node_modules/a/b/c/x.json')); 12 | }); 13 | }); 14 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/semver/test/amd.js: -------------------------------------------------------------------------------- 1 | var tap = require('tap'); 2 | var test = tap.test; 3 | 4 | test('amd', function(t) { 5 | global.define = define; 6 | define.amd = true; 7 | var defined = null; 8 | function define(stuff) { 9 | defined = stuff; 10 | } 11 | var fromRequire = require('../'); 12 | t.ok(defined, 'amd function called'); 13 | t.equal(fromRequire, defined, 'amd stuff same as require stuff'); 14 | t.end(); 15 | }); 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/flagged-respawn/lib/reorder.js: -------------------------------------------------------------------------------- 1 | module.exports = function (flags, argv) { 2 | if (!argv) { 3 | argv = process.argv; 4 | } 5 | var args = [argv[1]]; 6 | argv.slice(2).forEach(function (arg) { 7 | var flag = arg.split('=')[0]; 8 | if (flags.indexOf(flag) !== -1) { 9 | args.unshift(arg); 10 | } else { 11 | args.push(arg); 12 | } 13 | }); 14 | args.unshift(argv[0]); 15 | return args; 16 | }; 17 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-webserver/node_modules/xtend/index.js: -------------------------------------------------------------------------------- 1 | module.exports = extend 2 | 3 | function extend() { 4 | var target = {} 5 | 6 | for (var i = 0; i < arguments.length; i++) { 7 | var source = arguments[i] 8 | 9 | for (var key in source) { 10 | if (source.hasOwnProperty(key)) { 11 | target[key] = source[key] 12 | } 13 | } 14 | } 15 | 16 | return target 17 | } 18 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/lib/src/getStats.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var through2 = require('through2'); 4 | var fs = require('graceful-fs'); 5 | 6 | function getStats() { 7 | return through2.obj(fetchStats); 8 | } 9 | 10 | function fetchStats(file, enc, cb) { 11 | fs.lstat(file.path, function (err, stat) { 12 | if (stat) { 13 | file.stat = stat; 14 | } 15 | cb(err, file); 16 | }); 17 | } 18 | 19 | module.exports = getStats; 20 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/brace-expansion/example.js: -------------------------------------------------------------------------------- 1 | var expand = require('./'); 2 | 3 | console.log(expand('http://any.org/archive{1996..1999}/vol{1..4}/part{a,b,c}.html')); 4 | console.log(expand('http://www.numericals.com/file{1..100..10}.txt')); 5 | console.log(expand('http://www.letters.com/file{a..z..2}.txt')); 6 | console.log(expand('mkdir /usr/local/src/bash/{old,new,dist,bugs}')); 7 | console.log(expand('chown root /usr/{ucb/{ex,edit},lib/{ex?.?*,how_ex}}')); 8 | 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/multipipe/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.1.1 / 2014-06-01 3 | ================== 4 | 5 | * update duplexer2 dep 6 | 7 | 0.1.0 / 2014-05-24 8 | ================== 9 | 10 | * add optional callback 11 | 12 | 0.0.2 / 2014-02-20 13 | ================== 14 | 15 | * fix infinite loop 16 | 17 | 0.0.1 / 2014-01-15 18 | ================== 19 | 20 | * fix error bubbling 21 | 22 | 0.0.0 / 2014-01-13 23 | ================== 24 | 25 | * initial release 26 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/through2/node_modules/isarray/test.js: -------------------------------------------------------------------------------- 1 | var isArray = require('./'); 2 | var test = require('tape'); 3 | 4 | test('is array', function(t){ 5 | t.ok(isArray([])); 6 | t.notOk(isArray({})); 7 | t.notOk(isArray(null)); 8 | t.notOk(isArray(false)); 9 | 10 | var obj = {}; 11 | obj[0] = true; 12 | t.notOk(isArray(obj)); 13 | 14 | var arr = []; 15 | arr.foo = 'bar'; 16 | t.ok(isArray(arr)); 17 | 18 | t.end(); 19 | }); 20 | 21 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/iconv-lite/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | env: 3 | - CXX=g++-4.8 4 | language: node_js 5 | node_js: 6 | - "0.8" 7 | - "0.10" 8 | - "0.11" 9 | - "0.12" 10 | - "iojs" 11 | - "4.0" 12 | addons: 13 | apt: 14 | sources: 15 | - ubuntu-toolchain-r-test 16 | packages: 17 | - gcc-4.8 18 | - g++-4.8 19 | before_install: 20 | - "test $TRAVIS_NODE_VERSION != '0.8' || npm install -g npm@1.2.8000" 21 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/rechoir/lib/register.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const resolve = require('resolve'); 3 | 4 | module.exports = function (cwd, moduleName, register) { 5 | try { 6 | var modulePath = resolve.sync(moduleName, {basedir: cwd}); 7 | var result = require(modulePath); 8 | if (typeof register === 'function') { 9 | register(result); 10 | } 11 | } catch (e) { 12 | result = e; 13 | } 14 | return result; 15 | }; 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/resolve/test/filter_sync.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var resolve = require('../'); 3 | 4 | test('filter', function (t) { 5 | var dir = __dirname + '/resolver'; 6 | var res = resolve.sync('./baz', { 7 | basedir : dir, 8 | packageFilter : function (pkg) { 9 | pkg.main = 'doom' 10 | return pkg; 11 | } 12 | }); 13 | t.equal(res, dir + '/baz/doom.js'); 14 | t.end(); 15 | }); 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/body-parser/node_modules/qs/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "qs", 3 | "repository": "hapijs/qs", 4 | "description": "query-string parser / stringifier with nesting support", 5 | "version": "5.1.0", 6 | "keywords": ["querystring", "query", "parser"], 7 | "main": "lib/index.js", 8 | "scripts": [ 9 | "lib/index.js", 10 | "lib/parse.js", 11 | "lib/stringify.js", 12 | "lib/utils.js" 13 | ], 14 | "license": "BSD-3-Clause" 15 | } 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/examples/watch.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var gulp = require('gulp'), 4 | less = require('gulp-less'), 5 | livereload = require('gulp-livereload'); 6 | 7 | gulp.task('less', function() { 8 | gulp.src('less/*.less') 9 | .pipe(less()) 10 | .pipe(gulp.dest('dist')) 11 | .pipe(livereload()); 12 | }); 13 | 14 | gulp.task('watch', function() { 15 | livereload.listen(); 16 | gulp.watch('less/*.less', ['less']); 17 | }); 18 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/inflight/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env" : { 3 | "node" : true 4 | }, 5 | "rules" : { 6 | "semi": [2, "never"], 7 | "strict": 0, 8 | "quotes": [1, "single", "avoid-escape"], 9 | "no-use-before-define": 0, 10 | "curly": 0, 11 | "no-underscore-dangle": 0, 12 | "no-lonely-if": 1, 13 | "no-unused-vars": [2, {"vars" : "all", "args" : "after-used"}], 14 | "no-mixed-requires": 0, 15 | "space-infix-ops": 0 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/signal-exit/test/fixtures/exit-last.js: -------------------------------------------------------------------------------- 1 | var onSignalExit = require('../../') 2 | var counter = 0 3 | 4 | onSignalExit(function (code, signal) { 5 | counter++ 6 | console.log('last counter=%j, code=%j, signal=%j', 7 | counter, code, signal) 8 | }, {alwaysLast: true}) 9 | 10 | onSignalExit(function (code, signal) { 11 | counter++ 12 | console.log('first counter=%j, code=%j, signal=%j', 13 | counter, code, signal) 14 | }) 15 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/vinyl-fs/node_modules/graceful-fs/fs.js: -------------------------------------------------------------------------------- 1 | // eeeeeevvvvviiiiiiillllll 2 | // more evil than monkey-patching the native builtin? 3 | // Not sure. 4 | 5 | var mod = require("module") 6 | var pre = '(function (exports, require, module, __filename, __dirname) { ' 7 | var post = '});' 8 | var src = pre + process.binding('natives').fs + post 9 | var vm = require('vm') 10 | var fn = vm.runInThisContext(src) 11 | fn(exports, require, module, __filename, __dirname) 12 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/xtend/mutable.js: -------------------------------------------------------------------------------- 1 | module.exports = extend 2 | 3 | var hasOwnProperty = Object.prototype.hasOwnProperty; 4 | 5 | function extend(target) { 6 | for (var i = 1; i < arguments.length; i++) { 7 | var source = arguments[i] 8 | 9 | for (var key in source) { 10 | if (hasOwnProperty.call(source, key)) { 11 | target[key] = source[key] 12 | } 13 | } 14 | } 15 | 16 | return target 17 | } 18 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/minimist/test/kv_short.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('short -k=v' , function (t) { 5 | t.plan(1); 6 | 7 | var argv = parse([ '-b=123' ]); 8 | t.deepEqual(argv, { b: 123, _: [] }); 9 | }); 10 | 11 | test('multi short -k=v' , function (t) { 12 | t.plan(1); 13 | 14 | var argv = parse([ '-a=whatever', '-b=robots' ]); 15 | t.deepEqual(argv, { a: 'whatever', b: 'robots', _: [] }); 16 | }); 17 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/depd/lib/compat/event-listener-count.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * depd 3 | * Copyright(c) 2015 Douglas Christopher Wilson 4 | * MIT Licensed 5 | */ 6 | 7 | 'use strict' 8 | 9 | /** 10 | * Module exports. 11 | * @public 12 | */ 13 | 14 | module.exports = eventListenerCount 15 | 16 | /** 17 | * Get the count of listeners on an event emitter of a specific type. 18 | */ 19 | 20 | function eventListenerCount(emitter, type) { 21 | return emitter.listeners(type).length 22 | } 23 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/flagged-respawn/lib/respawn.js: -------------------------------------------------------------------------------- 1 | const spawn = require('child_process').spawn; 2 | 3 | module.exports = function (argv) { 4 | var child = spawn(argv[0], argv.slice(1), { stdio: 'inherit' }); 5 | child.on('exit', function (code, signal) { 6 | process.on('exit', function () { 7 | if (signal) { 8 | process.kill(process.pid, signal); 9 | } else { 10 | process.exit(code); 11 | } 12 | }); 13 | }); 14 | return child; 15 | }; 16 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/faye-websocket/examples/haproxy.conf: -------------------------------------------------------------------------------- 1 | defaults 2 | mode http 3 | timeout client 5s 4 | timeout connect 5s 5 | timeout server 5s 6 | 7 | frontend all 0.0.0.0:3000 8 | mode http 9 | timeout client 120s 10 | 11 | option forwardfor 12 | option http-server-close 13 | option http-pretend-keepalive 14 | 15 | default_backend sockets 16 | 17 | backend sockets 18 | balance uri depth 2 19 | timeout server 120s 20 | server socket1 127.0.0.1:7000 21 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/test/dev.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIIBFDCBwQIJANfkG5TrzC+/MA0GCSqGSIb3DQEBCwUAMBQxEjAQBgNVBAMMCWxv 3 | Y2FsaG9zdDAeFw0xNDEyMTQwMTQ4MjFaFw0xNDEyMTUwMTQ4MjFaMBQxEjAQBgNV 4 | BAMMCWxvY2FsaG9zdDBZMA0GCSqGSIb3DQEBAQUAA0gAMEUCPgGLJ5K3HJAwG7yp 5 | +8+oD4IEfUHVoDEeo5G/Nz2qPssD/wp3Gy5adKWbYEqFgKS83GAktAOrkNaeT3b/ 6 | +maFAgMBAAEwDQYJKoZIhvcNAQELBQADPwAAvK9bZW8TZ4HO+4u+3VH0avjPmPHJ 7 | 9w9UDEYzrICraEN136qhxOpgGHljV5BSwjKJSv6ApCnmA3tPmyTqrA== 8 | -----END CERTIFICATE----- 9 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/is-utf8/README.md: -------------------------------------------------------------------------------- 1 | #utf8 detector 2 | 3 | Detect if a Buffer is utf8 encoded. 4 | It need The minimum amount of bytes is 4. 5 | 6 | 7 | ```javascript 8 | var fs = require('fs'); 9 | var isUtf8 = require('is-utf8'); 10 | var ansi = fs.readFileSync('ansi.txt'); 11 | var utf8 = fs.readFileSync('utf8.txt'); 12 | 13 | console.log('ansi.txt is utf8: '+isUtf8(ansi)); //false 14 | console.log('utf8.txt is utf8: '+isUtf8(utf8)); //true 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/xtend/immutable.js: -------------------------------------------------------------------------------- 1 | module.exports = extend 2 | 3 | var hasOwnProperty = Object.prototype.hasOwnProperty; 4 | 5 | function extend() { 6 | var target = {} 7 | 8 | for (var i = 0; i < arguments.length; i++) { 9 | var source = arguments[i] 10 | 11 | for (var key in source) { 12 | if (hasOwnProperty.call(source, key)) { 13 | target[key] = source[key] 14 | } 15 | } 16 | } 17 | 18 | return target 19 | } 20 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/gulp-livereload/examples/basepath.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var gulp = require('gulp'), 4 | less = require('gulp-less'), 5 | livereload = require('gulp-livereload'); 6 | 7 | gulp.task('less', function() { 8 | gulp.src('less/*.less') 9 | .pipe(less()) 10 | .pipe(gulp.dest('dist/styles')) 11 | .pipe(livereload()); 12 | }); 13 | 14 | gulp.task('watch', function() { 15 | livereload.listen({ basePath: 'dist' }); 16 | gulp.watch('less/*.less', ['less']); 17 | }); 18 | -------------------------------------------------------------------------------- /gulp-autoRefresh/node_modules/strip-bom/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var isUtf8 = require('is-utf8'); 3 | 4 | module.exports = function (x) { 5 | // Catches EFBBBF (UTF-8 BOM) because the buffer-to-string 6 | // conversion translates it to FEFF (UTF-16 BOM) 7 | if (typeof x === 'string' && x.charCodeAt(0) === 0xFEFF) { 8 | return x.slice(1); 9 | } 10 | 11 | if (Buffer.isBuffer(x) && isUtf8(x) && 12 | x[0] === 0xEF && x[1] === 0xBB && x[2] === 0xBF) { 13 | return x.slice(3); 14 | } 15 | 16 | return x; 17 | }; 18 | --------------------------------------------------------------------------------