代码之家  ›  专栏  ›  技术社区  ›  Alan Wells

如何找到Firebase工具的当前版本

  •  0
  • Alan Wells  · 技术社区  · 6 年前

    从node.js命令提示符,使用:

    $ firebase help
    

    提供以下列表:

    Usage: firebase [options] [command]
    
    Options:
    --------
    
    
     - -V, --version - output the version number
     - -P, --project <alias_or_project_id> - the Firebase project to use for this command
     - -j, --json - output JSON instead of text, also triggers non-interactive mode   --token <token> - supply an auth token for
       this command
     - --non-interactive - error out of the command instead of waiting for prompts
     - --interactive - force interactive shell treatment even when not detected
     - --debug - print verbose debug output and keep a debug log file
     - -h, --help - output usage information
    
    Commands:
    ---------
    
     - auth:import [options] [dataFile]           import users into your
       Firebase project from a data file(.csv or .json)
     - auth:export [options] [dataFile]           Export accounts from your
       Firebase project into a data file
     - database:get [options] <path>              fetch and print JSON data
       at the specified path
     - database:push [options] <path> [infile]    add a new JSON object to a
       list of data in your Firebase
     - database:set [options] <path> [infile]     store JSON data at the
       specified path via STDIN, arg, or file
     - database:remove [options] <path>           remove data from your
       Firebase at the specified path
     - database:update [options] <path> [infile]  update some of the keys
       for the defined path in your Firebase
     - database:profile [options]                 profile the Realtime
       Database and generate a usage report
     - firestore:delete [options] [path]          Delete data from Cloud
       Firestore.
     - firestore:indexes [options]                List indexes in your
       project's Cloud Firestore database.
     - deploy [options]                           deploy code and assets to
       your Firebase project
     - hosting:disable [options]                  stop serving web traffic
       to your Firebase Hosting site
     - functions:log [options]                    read logs from deployed
       functions
     - functions:shell [options]                  launch full Node shell
       with emulated functions
     - functions:config:clone [options]           clone environment config
       from another project
     - functions:config:get [path]                fetch environment config
       stored at the given path
     - functions:config:set [values...]           set environment config
       with key=value syntax
     - functions:config:unset [keys...]           unset environment config
       at the specified path(s)
     - functions:delete [options] [filters...]    delete one or more Cloud
       Functions by name or group name.
     - experimental:functions:shell [options]     launch full Node shell
       with emulated functions. (Alias for `firebase functions:shell.)
     - help [command]                             display help information
     - init [feature]                             setup a Firebase project
       in the current directory
     - list                                       list the Firebase projects
       you have access to
     - login [options]                            log the CLI into Firebase
     - login:ci [options]                         generate an access token
       for use in non-interactive environments
     - logout                                     log the CLI out of
       Firebase
     - open [link]                                quickly open a browser to
       relevant project resources
     - serve [options]                            start a local server for
       your static assets
     - setup:web                                  display this project's
       setup information for the Firebase JS SDK
     - setup:emulators:database                   downloads the database
       emulator
     - setup:emulators:firestore                  downloads the firestore
       emulator
     - target [type]                              display configured deploy
       targets for the current project
     - target:apply <type> <name> <resources...>  apply a deploy target to a
       resource
     - target:clear <type> <target>               clear all resources from a
       named resource target
     - target:remove <type> <resource>            remove a resource target
     - tools:migrate [options]                    ensure your firebase.json
       format is up to date
     - use [options] [alias_or_project_id]        set an active Firebase
       project for your working directory
    

    要获取特定命令的帮助,请键入firebase help[命令名称]

    $ firebase -V
    

    给出了一个版本号,但我不知道它是否是Firebase工具的版本号。

    工具的唯一命令是:

    工具:迁移[选项]

    确保您的firebase.json格式是最新的

    2 回复  |  直到 6 年前
        1
  •  11
  •   Frank van Puffelen    3 年前

    旗帜 -V --version

    firebase --version
    

    要将Firebase工具升级至最新版本,请运行:

    npm upgrade firebase-tools -g
    
        2
  •  20
  •   Fakebounce    6 年前

    尝试运行:

     firebase tools --version
    
        3
  •  4
  •   FiringBlanks    5 年前

    firebase tools --version 检查版本。

    根据提示,运行 npm install -g firebase-tools 更新。

    enter image description here

    更新

    你说得对。它看起来与的版本号相匹配 this library ,但不是另一个。

        4
  •  3
  •   Sky    5 年前

    照办 firebase --version 它会给你版本号 enter image description here