
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Automate use of OBS recordings via command line to help document development workflows with audio/video
Automate use of OBS recordings to help document development workflows with audio/video
Use obsdev record $recordingName within a git repo to start recording and then stop the recording via OBS or obsdev stop-record.
obsdev is a command line utility that helps developers use OBS to record videos as they work and easily organize where the recordings are stored based on the current git branch.
It also takes advantage of oclif plugins to allow developers to add plugins to further process saved recordings. Check out obsdev-jira-plugin which uploads saved recordings to JIRA tickets automatically.
Videos are a crucial communication mechanism for teams, especially remote teams in agile development. They can cut down on meetings, enable clearer async communication, and serve as work documentation (when you are asked by your colleagues if X feature really worked when you tested and merged it, you can back it up with video proof rather than memory).
~/Users/me/Movies)obsdev flow, you have to:obsdev record $recordingNameobsdev stop-record)$recordingName in a directory named after your branch within the root OBS recording output path that is configured
~/Users/me/Movies/BRANCH-1234/demo.mp4127.0.0.14455$ npm install -g obsdev
$ obsdev COMMAND
running command...
$ obsdev (--version)
obsdev/1.1.7 linux-x64 node-v24.8.0
$ obsdev --help [COMMAND]
USAGE
$ obsdev COMMAND
...
obsdev help [COMMAND]obsdev pluginsobsdev plugins add PLUGINobsdev plugins:inspect PLUGIN...obsdev plugins install PLUGINobsdev plugins link PATHobsdev plugins remove [PLUGIN]obsdev plugins resetobsdev plugins uninstall [PLUGIN]obsdev plugins unlink [PLUGIN]obsdev plugins updateobsdev record [FILENAME]obsdev stop-recordobsdev versionobsdev help [COMMAND]Display help for obsdev.
USAGE
$ obsdev help [COMMAND...] [-n]
ARGUMENTS
COMMAND... Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for obsdev.
See code: @oclif/plugin-help
obsdev pluginsList installed plugins.
USAGE
$ obsdev plugins [--json] [--core]
FLAGS
--core Show core plugins.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
List installed plugins.
EXAMPLES
$ obsdev plugins
See code: @oclif/plugin-plugins
obsdev plugins add PLUGINInstalls a plugin into obsdev.
USAGE
$ obsdev plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
ARGUMENTS
PLUGIN... Plugin to install.
FLAGS
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
-h, --help Show CLI help.
-s, --silent Silences npm output.
-v, --verbose Show verbose npm output.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Installs a plugin into obsdev.
Uses npm to install plugins.
Installation of a user-installed plugin will override a core plugin.
Use the OBSDEV_NPM_LOG_LEVEL environment variable to set the npm loglevel.
Use the OBSDEV_NPM_REGISTRY environment variable to set the npm registry.
ALIASES
$ obsdev plugins add
EXAMPLES
Install a plugin from npm registry.
$ obsdev plugins add myplugin
Install a plugin from a github url.
$ obsdev plugins add https://github.com/someuser/someplugin
Install a plugin from a github slug.
$ obsdev plugins add someuser/someplugin
obsdev plugins:inspect PLUGIN...Displays installation properties of a plugin.
USAGE
$ obsdev plugins inspect PLUGIN...
ARGUMENTS
PLUGIN... [default: .] Plugin to inspect.
FLAGS
-h, --help Show CLI help.
-v, --verbose
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Displays installation properties of a plugin.
EXAMPLES
$ obsdev plugins inspect myplugin
See code: @oclif/plugin-plugins
obsdev plugins install PLUGINInstalls a plugin into obsdev.
USAGE
$ obsdev plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
ARGUMENTS
PLUGIN... Plugin to install.
FLAGS
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
-h, --help Show CLI help.
-s, --silent Silences npm output.
-v, --verbose Show verbose npm output.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Installs a plugin into obsdev.
Uses npm to install plugins.
Installation of a user-installed plugin will override a core plugin.
Use the OBSDEV_NPM_LOG_LEVEL environment variable to set the npm loglevel.
Use the OBSDEV_NPM_REGISTRY environment variable to set the npm registry.
ALIASES
$ obsdev plugins add
EXAMPLES
Install a plugin from npm registry.
$ obsdev plugins install myplugin
Install a plugin from a github url.
$ obsdev plugins install https://github.com/someuser/someplugin
Install a plugin from a github slug.
$ obsdev plugins install someuser/someplugin
See code: @oclif/plugin-plugins
obsdev plugins link PATHLinks a plugin into the CLI for development.
USAGE
$ obsdev plugins link PATH [-h] [--install] [-v]
ARGUMENTS
PATH [default: .] path to plugin
FLAGS
-h, --help Show CLI help.
-v, --verbose
--[no-]install Install dependencies after linking the plugin.
DESCRIPTION
Links a plugin into the CLI for development.
Installation of a linked plugin will override a user-installed or core plugin.
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
command will override the user-installed or core plugin implementation. This is useful for development work.
EXAMPLES
$ obsdev plugins link myplugin
See code: @oclif/plugin-plugins
obsdev plugins remove [PLUGIN]Removes a plugin from the CLI.
USAGE
$ obsdev plugins remove [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ obsdev plugins unlink
$ obsdev plugins remove
EXAMPLES
$ obsdev plugins remove myplugin
obsdev plugins resetRemove all user-installed and linked plugins.
USAGE
$ obsdev plugins reset [--hard] [--reinstall]
FLAGS
--hard Delete node_modules and package manager related files in addition to uninstalling plugins.
--reinstall Reinstall all plugins after uninstalling.
See code: @oclif/plugin-plugins
obsdev plugins uninstall [PLUGIN]Removes a plugin from the CLI.
USAGE
$ obsdev plugins uninstall [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ obsdev plugins unlink
$ obsdev plugins remove
EXAMPLES
$ obsdev plugins uninstall myplugin
See code: @oclif/plugin-plugins
obsdev plugins unlink [PLUGIN]Removes a plugin from the CLI.
USAGE
$ obsdev plugins unlink [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ obsdev plugins unlink
$ obsdev plugins remove
EXAMPLES
$ obsdev plugins unlink myplugin
obsdev plugins updateUpdate installed plugins.
USAGE
$ obsdev plugins update [-h] [-v]
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Update installed plugins.
See code: @oclif/plugin-plugins
obsdev record [FILENAME]Start an OBS recording
USAGE
$ obsdev record [FILENAME] [-d]
ARGUMENTS
FILENAME filename for saved recording with no extension
FLAGS
-d, --dryRun Print what would happen but take no action
DESCRIPTION
Start an OBS recording
EXAMPLES
$ obsdev record -d demo-1
See code: src/commands/record.ts
obsdev stop-recordStop an OBS recording
USAGE
$ obsdev stop-record
DESCRIPTION
Stop an OBS recording
EXAMPLES
$ obsdev stop-record
See code: src/commands/stop-record.ts
obsdev versionUSAGE
$ obsdev version [--json] [--verbose]
FLAGS
--verbose Show additional information about the CLI.
GLOBAL FLAGS
--json Format output as json.
FLAG DESCRIPTIONS
--verbose Show additional information about the CLI.
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
See code: @oclif/plugin-version
The following are hooks that obsdev emits for plugins to tap into
videoSaved
dryRun : booleanpath : string - this is the path the video was saved toFAQs
Automate use of OBS recordings via command line to help document development workflows with audio/video
The npm package obsdev receives a total of 2 weekly downloads. As such, obsdev popularity was classified as not popular.
We found that obsdev demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.