Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nuxt-resource-module

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nuxt-resource-module

@nuxtjs/axios based API request wrapper for Nuxt.js

  • 0.2.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

Nuxt.js Resource Module

⚠️Under development⚠️

正常に動かない可能性があります。
There is a possibility that it does not move normally.

Status

CircleCI

Features

  • @nuxtjs/axiosをラップした HTTP リクエストモジュール
  • asyncData と fetch でリクエストしたリクエストを遷移後まで遅延させられます
    • リンクをクリックしてすぐに遷移します
    • 遷移後リクエストを行い、response.dataをそのままdataプロパティにマッピングします
    • SSR 時は遅延させずにそのままリクエストします
  • リクエスト時にレスポンスを加工する処理を追加できます

Install

$ yarn add nuxt-resource-module

nuxt.config.js

module.exports = {
  // ...
  modules: [
    'nuxt-resource-module', // required before @nuxtjs/axios
    '@nuxtjs/axios',
  ],
  // ...
}

Usage

async asyncData({ app, error }) {
  // default request
  const response = await app.$_resource.get({
    url: '/users',
  });

  // delay request
  const response = await app.$_resource.delay.get({
    url: '/users',
    // response.data mapper
    dataMapper(response: AxiosResponse) {
      const { data } = response;
      return data ? { users: data.users } : { users: [] };
    },

    // response 
    processor(response: AxiosResponse) {
      if (response.status !== 200) {
        error({ statusCode: response.status, message: 'Request error' })
      }
      return response;
    },
  });
}

Options

coming soon...

  • default processor
  • etc.

Keywords

FAQs

Package last updated on 31 Oct 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc