Current maximum length is 4096 UTF8 characters
const Input = (props) => (
<input type="text" onChange={props.handleChange} />
)
const Output = (props) => (
<div>{props.text}</div>
)
class App extends React.Component {
constructor (props) {
super(props)
this.state = {}
this.handleChange = this.handleChange.bind(this)
}
handleChange (e) {
this.setState({
value: e.target.value
})
}
render () {
return (
<div>
<Input handleChange={this.handleChange} />
<Output text={this.state.value} />
</div>
)
}
}
mongoose.Promise = global.Promise;
перед mongoose.connect(...)
const net = require('net')
// создаем сервер
const server = net.createServer(socket => {
console.log('connected') // клиент присоединился
socket.end('hello') // отвечаем и закрываем соединение
})
server.listen('/var/run/mysocket') // слушаем сокет
var ConnectedCour = ReactRedux.connect(mapStateToProps)(Cour)
<ReactRedux.Provider store={store}>
<ConnectedCour />
</ReactRedux.Provider>
docker images
показывает размер образаdocker ps -s
или docker ps -as
выведет размер контейнера example.com/api/v1/resource
, т.е. старый frontend будет грузить v1 API, обновленный будет грузить v2. const asyncAction = () => {
return (dispatch, getState) => {
localStorage.setItem('state', JSON.stringify(getState()))
return dispatch(someAction())
}
}
dateFormat="YYYY-mm-dd"
вместо dateFormatCalendar="YYYY-mm-dd"
npm install