npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

fvne

v1.0.6

Published

FVNE is a command-line interface (CLI) tool developed using Node.js. It allows you to extract vehicle model names from files named "vehicles.meta" within a specified directory.

Downloads

4

Readme

FiveM Vehicle Names Extractor

FVNE (FiveM Vehicle Names Extractor) is a command-line interface (CLI) tool developed using Node.js. It is specifically designed for server development on the FiveM gaming platform. This powerful tool streamlines the process of extracting vehicle model names from files named "vehicles.meta" within a specified directory, making it an invaluable asset for server developers. Whether you're building, maintaining, or modifying a FiveM server, FVN Extractor provides an efficient solution for effortlessly accessing and managing the vehicle model names necessary for your server development tasks.

Installation

To use FVNE, you need to have Node.js installed on your machine. Then, follow these steps to install the tool globally:

  1. Open a terminal or command prompt.
  2. Run the following command:
npm install -g fvne

Usage

Once installed, you can use the fvne command to extract vehicle model names from the "vehicles.meta" files. The tool accepts a single argument, which is the relative path to the directory you want to search for "vehicles.meta" files in.

fvne <relative_directory_path>

Options

  • --short: Only output the model names, separated by newlines.
  • --output <file_path>: Write the output to a file instead of displaying it in the terminal.

Arguments

  • <relative_directory_path>: The relative path to the directory you want to search for "vehicles.meta" files in.

Note: Make sure to provide a relative directory path as an argument when running the command.

Example

└───cars
    ├───supersport
    │   ├───stream
    │   └───vehicles.meta
    └───teslax
        ├───data
        │   └───vehicles.meta
        └───stream

To extract the vehicle model names from the "vehicles.meta" files within the "[cars]" directory, you would run the following command:

fvne cars

The tool will search for "vehicles.meta" files recursively in the specified directory and display the model names found, along with the corresponding file paths.

1. File: supersport\vehicles.meta
Model 1: supersport
Model 2: example

2. File: teslax\data\vehicles.meta
Model 1: teslax

To extract only the model names, separated by newlines, you can use the --short option:

fvne cars --short

The tool will output the model names without any additional information:

supersport
example
teslax

You can also write the output to a file using the --output option:

fvne cars --output output.txt

The tool will save the output to the specified file (output.txt in this example) and display a confirmation message:

Output written to output.txt

License

FVNE is licensed under the ISC License.

Author

The author of FVNE is Pioter#1234 on discord.

Version

Current version of FVNE: 1.0.6

Disclaimer

This tool is provided as-is without any warranty. Use it at your own risk.