Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
cve-2023-28771-demo | Kitploit
ツール/GitHubGitHub/jinparkmida/cve-2023-28771-demo
偵察脆弱性分析エクスプロイトウェブアプリケーション悪用ペネトレーションテストArchived
GitHubjinparkmida/cve-2023-28771-demo

cve-2023-28771-demo

リポジトリを見る
1年前未レビュー

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有

React + TypeScript + Vite

このテンプレートは、Vite 上で HMR といくつかの ESLint ルールを使用して React を動作させるための最小限のセットアップを提供します。

現在、2 つの公式プラグインが利用可能です:

  • @vitejs/plugin-react は Fast Refresh に Babel を使用します
  • @vitejs/plugin-react-swc は Fast Refresh に SWC を使用します

ESLint 設定の拡張

本番アプリケーションを開発している場合は、型認識の lint ルールを有効にするよう設定を更新することを推奨します:

root@kitploit:~
export default tseslint.config([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      ...tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      ...tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      ...tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

React 固有の lint ルール用に eslint-plugin-react-x と eslint-plugin-react-dom をインストールすることもできます:

root@kitploit:~
// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default tseslint.config([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])
ツールをダウンロード