1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-12 01:48:21 +02:00
The browser extension vault (Chrome, Firefox, Opera, Edge, Safari, & more).
Go to file
Matt Gibson 323c3ee04a
Feature/password protected export (#446)
* Update jslib

* Bumped version to 1.20.0 (#421)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
(cherry picked from commit 3e4aa8e476)

* password protected export

* Run Prettier

* Add importer to list of known file types

* Improve launch.json settings

* Turn on import from password protected file

* Run prettier

* Fix webpack source map path change

* Update getPassword helper to use new options class

* Prettier

* Add client type

* Remove master password requirement for export

Alter password optional argument to indicating the file should be password protected rather than account protected

* update jslib

* Handle passwordProtected automagically

* Remove passwordproteted type from import command

* Update src/utils.ts

Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>

* Update src/vault.program.ts

Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>

* Use new util method

* remove password protected format

* Update jslib

* Clarify export command

* Run prettier

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Matt Gibson <gibson.matt10@gmail.com>
Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>
2022-02-23 15:47:32 -06:00
.github Create initial workflow (#488) 2022-02-18 13:28:44 -06:00
.husky Make husky pre-commit hook executable (#466) 2022-02-08 08:30:38 +10:00
.vscode Feature/password protected export (#446) 2022-02-23 15:47:32 -06:00
config Feature/put serve behind feature flag (#455) 2022-01-28 08:29:04 -06:00
examples Add git credential helper example (#388) 2022-01-12 04:54:33 -08:00
jslib@78b5f15042 Feature/password protected export (#446) 2022-02-23 15:47:32 -06:00
scripts Update workflows to new model (#379) 2021-10-05 16:20:18 -04:00
spec Feature/put serve behind feature flag (#455) 2022-01-28 08:29:04 -06:00
src Feature/password protected export (#446) 2022-02-23 15:47:32 -06:00
stores Update year in copyright (#432) 2022-01-05 19:44:04 +01:00
.editorconfig Add Prettier configuration (#425) 2021-12-20 17:44:12 +01:00
.git-blame-ignore-revs Fix/lowdb no cache (#443) 2022-01-13 11:03:19 -06:00
.gitattributes Apply Prettier (#426) 2021-12-20 18:04:00 +01:00
.gitignore Feature/put serve behind feature flag (#455) 2022-01-28 08:29:04 -06:00
.gitmodules move to https submodule 2018-05-16 15:56:31 -04:00
.npmignore publish to npm 2018-05-15 00:45:42 -04:00
.prettierignore Feature/password protected export (#446) 2022-02-23 15:47:32 -06:00
.prettierrc.json Add Prettier configuration (#425) 2021-12-20 17:44:12 +01:00
CONTRIBUTING.md Apply Prettier (#426) 2021-12-20 18:04:00 +01:00
ISSUE_TEMPLATE.md Creating issue template (#269) 2021-03-30 18:17:26 -04:00
LICENSE.txt license file 2018-05-23 12:12:18 -04:00
package-lock.json Bump version to 1.21.1 (#484) 2022-02-14 12:26:34 -06:00
package.json Exclude jslib from prettier hook (#486) 2022-02-17 10:37:25 +10:00
README.md We're Hiring (#491) 2022-02-22 14:04:17 +01:00
SECURITY.md Apply Prettier (#426) 2021-12-20 18:04:00 +01:00
tsconfig.json Update client for authService refactor (#448) 2022-02-07 17:31:36 -06:00
tslint.json Apply Prettier (#426) 2021-12-20 18:04:00 +01:00
webpack.config.js Feature/put serve behind feature flag (#455) 2022-01-28 08:29:04 -06:00

Github Workflow build on master Join the chat at https://gitter.im/bitwarden/Lobby

Bitwarden Command-line Interface

Platforms

The Bitwarden CLI is a powerful, full-featured command-line interface (CLI) tool to access and manage a Bitwarden vault. The CLI is written with TypeScript and Node.js and can be run on Windows, macOS, and Linux distributions.

CLI

Download/Install

You can install the Bitwarden CLI multiple different ways:

NPM

If you already have the Node.js runtime installed on your system, you can install the CLI using NPM. NPM makes it easy to keep your installation updated and should be the preferred installation method if you are already using Node.js.

npm install -g @bitwarden/cli

Native Executable

We provide natively packaged versions of the CLI for each platform which have no requirements on installing the Node.js runtime. You can obtain these from the downloads section in the documentation.

Other Package Managers

Documentation

The Bitwarden CLI is self-documented with --help content and examples for every command. You should start exploring the CLI by using the global --help option:

bw --help

This option will list all available commands that you can use with the CLI.

Additionally, you can run the --help option on a specific command to learn more about it:

bw list --help
bw create --help

Detailed Documentation

We provide detailed documentation and examples for using the CLI in our help center at https://help.bitwarden.com/article/cli/.

Build/Run

Requirements

  • Node.js v16.13.1.
    • Testing is done against Node 16, other versions may work, but are not guaranteed.
  • NPM v8

Run the app

npm install
npm run sub:init # initialize the git submodule for jslib
npm run build:watch

You can then run commands from the ./build folder:

node ./build/bw.js login

We're Hiring!

Interested in contributing in a big way? Consider joining our team! We're hiring for many positions. Please take a look at our Careers page to see what opportunities are currently open as well as what it's like to work at Bitwarden.

Contribute

Code contributions are welcome! Please commit any pull requests against the master branch. Learn more about how to contribute by reading the CONTRIBUTING.md file.

Security audits and feedback are welcome. Please open an issue or email us privately if the report is sensitive in nature. You can read our security policy in the SECURITY.md file.

Prettier

We recently migrated to using Prettier as code formatter. All previous branches will need to updated to avoid large merge conflicts using the following steps:

  1. Check out your local Branch
  2. Run git merge ec53a16c005e0dd9aef6845c18811e8b14067168
  3. Resolve any merge conflicts, commit.
  4. Run npm run prettier
  5. Commit
  6. Run git merge -Xours 910b4a24e649f21acbf4da5b2d422b121d514bd5
  7. Push

Git blame

We also recommend that you configure git to ignore the prettier revision using:

git config blame.ignoreRevsFile .git-blame-ignore-revs