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

nuxt2-storybook-ts

v1.0.2

Published

1. Package manager: - Yarn 2. Programming language: - TypeScript 3. UI framework: - Tailwind CSS 4. Nuxt.js modules: - Axios - Promise based HTTP client 5. Linting tools: - ESLint - Prettier - StyleLint 6. Testing

Downloads

14

Readme

nuxt2-storybook-ts

  1. Package manager:
    • Yarn
  2. Programming language:
    • TypeScript
  3. UI framework:
    • Tailwind CSS
  4. Nuxt.js modules:
    • Axios - Promise based HTTP client
  5. Linting tools:
    • ESLint
    • Prettier
    • StyleLint
  6. Testing framework:
    • Jest
  7. Rendering mode:
    • Universal (SSR / Static)
  8. Deployment target:
    • Server (Node.js hosting)
  9. Development tools:
    • jsconfig.json
  10. Continuous Integration:
    • none

Build Setup

# install dependencies
$ yarn install

# serve with hot reload at localhost:3000 -.env.local
$ yarn local

# serve with hot reload at localhost:3000 -.env.development
$ yarn dev

# build for production and launch server -.env.production
$ yarn build
$ yarn start

# generate static project
$ yarn generate

# serve storybook at localhost:6006
$ yarn storybook

# storybook build for production
$ yarn build-storybook

# serve json server at localhost:5001
$ yarn mock

# lint js
$ yarn lint:js

# lint style
$ yarn lint:style

# lint prettier
$ yarn lint:prettier

# lint all
$ yarn lint

# linst fix all
$ yarn lintfix

For detailed explanation on how things work, check out the documentation.

Special Directories

You can create the following extra directories, some of which have special behaviors. Only pages is required; you can delete them if you don't want to use their functionality.

assets

The assets directory contains your uncompiled assets such as Stylus or Sass files, images, or fonts.

More information about the usage of this directory in the documentation.

components

The components directory contains your Vue.js components. Components make up the different parts of your page and can be reused and imported into your pages, layouts and even other components.

More information about the usage of this directory in the documentation.

layouts

Layouts are a great help when you want to change the look and feel of your Nuxt app, whether you want to include a sidebar or have distinct layouts for mobile and desktop.

More information about the usage of this directory in the documentation.

pages

This directory contains your application views and routes. Nuxt will read all the *.vue files inside this directory and setup Vue Router automatically.

More information about the usage of this directory in the documentation.

plugins

The plugins directory contains JavaScript plugins that you want to run before instantiating the root Vue.js Application. This is the place to add Vue plugins and to inject functions or constants. Every time you need to use Vue.use(), you should create a file in plugins/ and add its path to plugins in nuxt.config.js.

More information about the usage of this directory in the documentation.

static

This directory contains your static files. Each file inside this directory is mapped to /.

Example: /static/robots.txt is mapped as /robots.txt.

More information about the usage of this directory in the documentation.

store

This directory contains your Vuex store files. Creating a file in this directory automatically activates Vuex.

More information about the usage of this directory in the documentation.

■ json server

  • 포트 변경 추가 옵션
    • --port 5001
  • Now you can access resources using additional routes.(라우팅 경로 추가 옵션)
    • --routes mock/routes.json
  • Watch file(s)
  • --watch mock/_db.json
yarn add -D json-server
Options:
  --config, -c       Path to config file           [default: "json-server.json"]
  --port, -p         Set port                                    [default: 3000]
  --host, -H         Set host                             [default: "localhost"]
  --watch, -w        Watch file(s)                                     [boolean]
  --routes, -r       Path to routes file
  --middlewares, -m  Paths to middleware files                           [array]
  --static, -s       Set static files directory
  --read-only, --ro  Allow only GET requests                           [boolean]
  --no-cors, --nc    Disable Cross-Origin Resource Sharing             [boolean]
  --no-gzip, --ng    Disable GZIP Content-Encoding                     [boolean]
  --snapshots, -S    Set snapshots directory                      [default: "."]
  --delay, -d        Add delay to responses (ms)
  --id, -i           Set database id property (e.g. _id)         [default: "id"]
  --foreignKeySuffix, --fks  Set foreign key suffix, (e.g. _id as in post_id)
                                                                 [default: "Id"]
  --quiet, -q        Suppress log messages from output                 [boolean]
  --help, -h         Show help                                         [boolean]
  --version, -v      Show version number                               [boolean]