
Research
Security News
Malicious npm Packages Target BSC and Ethereum to Drain Crypto Wallets
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
@cra-express/router-prefetcher
Advanced tools
Simple utility to map your routes and prefetch your data on server
Instead of using this, you might want to wait for React Suspense, demo
:warning: Alpha stage. API may change, don't use on production yet!
npm i @cra-express/router-prefetcher
{{SCRIPT}}
to public/index.html<div id="root"></div>
{{SCRIPT}}
// server/app.js
import { createReactAppExpress } from '@cra-express/core';
import { getInitialData } from '@cra-express/router-prefetcher';
import routes from '../src/routes';
const path = require('path');
const React = require('react');
const { StaticRouter } = require('react-router');
const { default: App } = require('../src/App');
const clientBuildPath = path.resolve(__dirname, '../client');
let AppClass = App;
let serverData;
const app = createReactAppExpress({
clientBuildPath,
universalRender: handleUniversalRender,
onEndReplace(html) {
const state = store.getState();
return html.replace(
'{{SCRIPT}}',
`<script>
window.__INITIAL_DATA__ = ${JSON.stringify(serverData).replace(
/</g,
'\\u003c'
)};
</script>`
);
}
});
function handleUniversalRender(req, res) {
const context = {};
return getInitialData(req, res, routes)
.then(data => {
serverData = data;
const app = (
<StaticRouter location={req.url} context={context}>
<AppClass routes={routes} initialData={data} />
</StaticRouter>
);
return app;
})
.catch(err => {
console.error(err);
res.send(500);
});
}
export default app;
// src/index.js
import routes from './routes';
const data = window.__INITIAL_DATA__;
ReactDOM.hydrate(
<BrowserRouter>
<App routes={routes} initialData={data} />
</BrowserRouter>,
document.getElementById('root')
);
// src/App.js
import React from 'react';
import { Route, Switch } from 'react-router';
const App = ({ routes, initialData }) => {
return (
<Switch>
{routes.map((route, index) => {
return (
<Route
key={index}
path={route.path}
exact={route.exact}
render={props =>
React.createElement(route.component, {
...props,
routes: route.routes,
initialData: initialData[index] || null
})
}
/>
);
})}
</Switch>
);
};
// src/routes/DemoPage/AboutView.js
import React from 'react';
import withSSR from '../../components/withSSR';
class AboutView extends React.Component {
static getInitialData({ match, req, res }) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve({
article: `
This text is ALSO server rendered if and only if it's the initial render.
`,
currentRoute: match.pathname
});
}, 500);
});
}
render() {
const { isLoading, article, error } = this.props;
return (
<div>
<h1>About</h1>
{isLoading && <div>Loading from client...</div>}
{error && <div>{JSON.stringify(error, null, 2)}</div>}
{article && <div>{article}</div>}
</div>
);
}
}
export default withSSR(AboutView);
Please get the withSSR
code here
MIT
FAQs
Router Prefetcher for prefetching on server
We found that @cra-express/router-prefetcher 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.
Research
Security News
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
Security News
TC39 advances 9 JavaScript proposals, including Array.fromAsync, Error.isError, and Explicit Resource Management, which are now headed into the ECMAScript spec.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.