Jake Verbaten
Jake Verbaten
@maxogden why binary websockets instead of normal ones ?
Also see conversation in https://github.com/nodeschool/nodeschool.github.io/pull/14
@wpreul @azat-co you guys should hang out in #stackvm on freenode, planning to do a workshop this weekend, would love to sync up.
One of the things I care about is being able to do an anonymous `*` without having to give it a name. I guess I'll have to go add a...
I didn't realize html5 shiv would do something so horrible :\ A newly created element should be a newly created element as intended. Why does html5shiv even need to do...
@timdown alternatively just tell anyone who complains your code doesn't work with html5shiv that they should stop using html5shiv. [A la crockford](https://github.com/twitter/bootstrap/issues/3057#issuecomment-5135512)
:+1: I would also be interested in rules for git dependencies. Having a rule that mirrors the following rules - https://npmpackagejsonlint.org/docs/en/rules/dependencies/prefer-absolute-version-dependencies - https://npmpackagejsonlint.org/docs/en/rules/dependencies/prefer-absolute-version-devdependencies An "absolute-version" with git would be something...
I don’t use this package at the moment.
```json { "dependencies": { "data-layer-view": "Raynos/data-layer-view#v2.0.0", "electron-main": "github:Raynos/electron-main#v3.2.1", "private-components": "git+ssh://[email protected]/optoolco/private-components.git#v4.0.0", } } ``` There's three different variants for this. - `${githubUser}/${repoName}#v{semver}` aka `Raynos/error#v10.3.0` - `${githubUser}/${repoName}#v{semver}` aka `github:Raynos/error#v10.3.0` - `git+ssh://[email protected]:${githubUser}/${repoName}.git#v{semver}` aka...
The problem with a HTTPS link is credentials. The benefit of a `git+ssh` link is that it just reads `~/.ssh/config` and uses the credentials in my $HOMEDIR. You would need...