New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

jj-cmd

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jj-cmd

- 前端项目简单工具

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

jj-cmd

  • 前端项目简单工具

安装

npm i -g jj-cmd

jj-cmd init

项目目录会生成jj-cmd.conf.json 文件

httpApi 模块自动化

jj-cmd.conf.json 中 httpApi.src 的配置为httpApi 文件地址, header可根据需要自定义

{
    "httpApi":{
        "src":"test/httpApiTs.ts",
        "header":"import $fn from \"~/utils/fn\";\r\nimport httpApi from \"./httpApi\";"
    }
}

httpApi例如为

export default {
    user:{
        login:`/api/user/login`
    }
}

执行命令

jj-cmd httpApi

则可自动生成对应的接口文件,本功能适合前期简单使用

import $fn from "~/utils/fn";
import httpApi from "./httpApi";

export const login = (data?: any): any =>
    $fn.httpPost({
        url: httpApi.user.login,
        data
    });

FAQs

Package last updated on 25 May 2020

Did you know?

Socket

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.

Install

Related posts