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

swagger-to-vue

v1.0.3

Published

Simple library for generating Vue services from a Swagger/OpenAPI yaml/json definition file.

Downloads

7

Readme

Swagger to Vue Services Generator

A command-line interface (CLI) tool that generates Vue services from Swagger or OpenAPI definition files.

Installation

This is a Node.js module available through the npm registry. Install it globally using npm:

npm install -g swagger-to-vue

It can be installed only on project scope using npm:

npm install swagger-to-vue

Usage

swagger-to-vue -i /path/to/swagger_or_openapi_file -o /path/to/vue_project [-ts, -js] [-t]

Where:

/path/to/swagger_or_openapi_file is the path to your Swagger or OpenAPI definition file (.json or .yaml).

/path/to/vue_project is the path to your Vue project directory where the services will be created.

This command generates an Vue service for each operation defined in the Swagger/OpenAPI file.

In case unit-test .test files need to be generated, adding -t or --test parameter will make the library to generate a spec file for each service generated.

The library also allows chosing between JavaScript and TypeScript flavors by passing the parameter -ts or -js when running.

Example

Let's say you have an OpenAPI definition file at /home/user/api.yaml, a Vue project at /home/user/my-vue-project, and want the services to be generated in TypeScript and with unit-tests. You can generate services using the following command:

swagger-to-vue -i /home/user/api.yaml -o /home/user/my_vue_project/services_directory -ts -t

After running this command, you will find a .ts file for each operation defined in api.yaml inside your Vue project directory, along with a test.service.ts file.

Note

This script assumes that the Swagger/OpenAPI file is well-formed and may not handle all edge cases. It's a good starting point, but for production usage, you would likely need to extend and harden this script according to your specific needs.

This script considers Axios as http dependency, and Jest as unit-test engine. Future versions may offer the possibility of chosing other options.

Changelog

  • v1.0.3
    • Now when importing generated services on unit-test the extension (.js/.ts) is no longer used to avoid flag issues
  • v1.0.2
    • Minor bug fixed
  • v1.0.1
    • Minor bug fixed
  • v1.0.0
    • Initial release