Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
react-isomorphic-tools
Advanced tools
This library contains many tools when helps to build SSR such as:
Fetcher, fetchToState
Authorization (react-cookie)
Preload Data to component on client
Load(fetch) data on server side
helpers...
import {Auth} from 'react-isomorphic-tools'
methods:
setToken - establishes working token for Fetcher&&FetchToState When calling Fetcher() if isAuthenticated() === true then add to headers key Authorization = getTokenPrefix()+getToken()
If token is outdated (and refresh token is set) server must respond http status code == 401 for that would run process token refresh Will be send POST request to http://BaseUrl/token/refresh with params:{refreshToken} and Fetcher will wait new token and refreshToken for update then follow rerequest
import {fetcher, setBaseUrl} from 'react-isomorphic-tools'
setBaseUrl('http://api.itboost.org/app_dev.php/api')
fetcher('/events', {
method: 'GET', /* default 'GET') */
params:{},
baseUrl: null, /* custom baseUrl */
type: 'form-data' /* (default json) */
})
all parameters will be added to request as query string if method == ('GET'||'DELETE') other in request body
import React from 'react'
import {connect} from 'react-redux'
import {fetchToState} from 'react-isomorphic-tools'
@connect(state=>({
eventsShow: state.getIn(['fetchData', 'eventsShow'])
}),{fetchToState})
export default class App extends React.Component{
componentDidMount = () => {
const {fetchData, params} = this.props
fetchToState(`/events/${params.id}`, {
params:{
key: 'value'
},
key: 'eventsShow',
method: 'GET',
baseUrl: 'http://example.com/api'
})
}
}
import React from 'react'
import {preload} from 'react-isomorphic-tools'
import {connect} from 'react-redux'
@preload(({fetchToState})=> {
return fetchToState('/events', {
key: 'eventsList'
})
})
@connect(state=>({
eventsList: state.getIn(['fetchData', 'eventsList'])
}))
export default class Page extends React.Component {
static displayName = 'TestPage'
render() {
return (
<div>
</div>
)
}
}
In preload(preload, restProps)
preload contains:
FAQs
Authorization, Fetcher, Preload. Tools for ServerSide rendering
The npm package react-isomorphic-tools receives a total of 0 weekly downloads. As such, react-isomorphic-tools popularity was classified as not popular.
We found that react-isomorphic-tools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.