
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
@gorangajic/react-video-recorder
Advanced tools
> THIS IS THE FORK OF https://github.com/fbaiodias/react-video-recorder/
THIS IS THE FORK OF https://github.com/fbaiodias/react-video-recorder/
yarn add react-video-recorder
# Note: this project has react, react-dom, prop-types & styled-components as peerDependencies,
# so if you're starting from scratch run this instead:
yarn add react-video-recorder react react-dom prop-types styled-components
Basic usage (edit in stakblitz):
import React from 'react'
import { render } from 'react-dom'
import VideoRecorder from 'react-video-recorder'
const App = () => (
<VideoRecorder
onRecordingComplete={(videoBlob) => {
// Do something with the video...
console.log('videoBlob', videoBlob)
}}
/>
)
render(<App />, document.getElementById('root'))
Also check the Storybook for more demos and usage examples.
Note: if you click the "Show info" button in the top-right corner, you should be able to see a table with the supported prop-types.
All the UI can be customized by passing the following props:
renderDisconnectedViewView that's rendered before the user enables the camera access.
Default value: () => <DisconnectedView />
See <DisconnectedView /> source here.
renderLoadingViewView that's rendered while the camera is initializing.
() => <LoadingView />
See <LoadingView /> source here.
renderVideoInputViewView that's rendered when the browser does not support inline recording but allows opening the native camera (mainly iOS).
Default value: ({ videoInput }) => <Fragment>{videoInput}</Fragment/>
renderUnsupportedViewView that's rendered when the browser does not support recording video.
Default value: () => <UnsupportedView />
See <UnsupportedView /> source here.
renderErrorViewView that's rendered an unexpected error occurs.
Default value: () => <ErrorView />
See <ErrorView /> source here.
renderActionsOverlay that's rendered on top of the views and that contains the elements like the buttons, the timer or the countdown.
See the default implementation here.
Requirements
node version ">=8.3"
Install packages
yarn install
Run the storybook demo
yarn start
FAQs
> THIS IS THE FORK OF https://github.com/fbaiodias/react-video-recorder/
The npm package @gorangajic/react-video-recorder receives a total of 0 weekly downloads. As such, @gorangajic/react-video-recorder popularity was classified as not popular.
We found that @gorangajic/react-video-recorder 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
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.