-
``` javascript
var Foo = createClass({
componentWillMount: function() {
alert('Mounted Foo');
},
componentWillUnmount: function() {
alert('Unmounted Foo');
},
rende…
-
`--runtime-type-checks` currently works for primitive types, but not for type synonyms, and not for data constructors. See #59.
paf31 updated
10 years ago
-
altJSをテキストエリアに入れたらJavaScriptに変換して見られるビューアー
- [node-webkit](https://github.com/rogerwang/node-webkit)
- npmでインストール出来るaltJSのコンパイラ
- 複数のコンパイラを試して、自動的に変換できるのを選択
- シンタックスハイライト
- クリップボードにあるものを自動的に入力に入れる
-
I spent part of the weekend convincing myself the types for component are wrong. Components are a black hole, it's not possible to interrogate them (for example, asking an Ace component what the curre…
-
We talked about this somewhere a while back, perhaps just in IRC, thought it was worth making a proper issue for it. I can't remember which ones we said exactly, so this is for discussion as much as a…
garyb updated
10 years ago
-
So, I'm trying to explain my problem.
I have 3 models :
```
forum {name}
topic {title, locked}
message {content}
```
and this node-orm code :
``` js
// :forum has_many :topics
models.topic.hasOn…
-
I have been playing around with the library. I am trying to use their JSX syntax, and was just wondering how you guys get it to play nicely with jslint/jshint?
JSLint obviously does not like the JSX…
-
I'd personally rather lose compatibility with jQuery's naming convention than lose the ability to use `$` as infix application. This restriction also makes us miss out on other useful operator names.
paf31 updated
10 years ago
-
Now that Uglify supports input source maps, it's possible to compile an altJS language like CoffeeScript to JS with source maps then uglify the result, creating a new source map which references the o…
-
We should hide the Brocfile in the cli by default in order to adhere to the avoid massive api surface motto from our readme. If the user has a Brocfile in the project then we could use that one, but o…