詩キット " width="180" style="max-width: 100%;">
SSR を介した高速 Web デザインと開発のための React を備えた無料の Web キット。これはマイクロフロントエンドアーキテクチャでもあります。 React、redux、router、axios、express を使用します。このプロジェクトは、nodejs ライブラリを使用してブートストラップされました。プロジェクトは、pm2 を介した多数のリポジトリ ホスティング サービスからの自動デプロイメントをサポートしています。 poemkit最新の Web アプリケーションを構築するための50以上の組み込み UI コンポーネントを提供します。
poemkitコマンドを通じて動作およびデプロイできますが、コマンドの背後に実際のコードを記述する必要があります。これらのキットは、実際の Web サイトまたはアプリケーションのプロトタイプに組み込むことができる UI コンポーネントおよびいくつかのロジック モジュールとして機能しますが、現実の世界で動作させるにはプログラミング機能が必要になります。 poemkit完全にカスタマイズ可能な Webpack 要件を満たしています。
?スタンドアロンの React UI コンポーネント ライブラリ (BootStrap 5 に基づく) Funda UI を使用することもできます。
オンライン デモについては、https://uiux.cc/poemkit をチェックしてください。
サーバーはhttp://localhost:3000
で実行されます
poemkit /
├── README.md
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE
├── ecosystem.config.js ------------------------- # for pm2
├── babel.config.js
├── tsconfig.json
├── webpack.config.js
├── package-lock.json
├── package.json
├── test/ --------------------------- # Unit Testing scripts
├── public/ --------------------------- # HTML template of Homepage
│ ├── index.html
│ ├── manifest.json
│ └── server/ ------------------------------- # PHP scripts used to the server for testing
│ └── assets/
├── dist/ ------------------------------- # Files compiled, used in the production environment
│ ├── css/
│ │ ├── poemkit .css
│ │ └── poemkit .min.css
│ └── js/
│ │ ├── poemkit .js
│ │ └── poemkit .min.js
├── src/
│ ├── client/
│ │ ├── client.js
│ │ ├── actions/
│ │ ├── reducers/
│ │ ├── helpers/
│ │ ├── services/
│ │ ├── router/
│ │ ├── components/ ------------------------- # Independent React components
│ │ │ ├── * /
│ │ │ ├── _utils/ ----------------------- # General utilities & snippets(js & css)
│ │ │ └── _plugins/ --------------------- # Third-party plugins
│ │ ├── views/ ------------------------------ # Website pages
│ │ │ ├── _pages/
│ │ │ └── _html/
│ └── server/
│ │ ├── app.js
│ │ ├── server.js
│ │ └── renderer.js
│ └── store/
│ │ └── createStore.js
│ └── config/
│ │ ├── tmpl-manifest.json ----------------- # `manifest.json` file template
│ │ └── websiteConfig.js ------------------- # website config
└──
webpack.config.js
変更できます) マシン上でノードをセットアップする必要があります。これにより、ビルドされた配布可能ファイルが./dist/*
および./public/*.html
に出力されます。
ステップ 1. NPM を使用する (プロジェクトの現在のディレクトリを見つけて、次のコマンドを入力します) か、Github から最新バージョンをダウンロードします。 Nodejs の場合は、いくつかの依存関係をインストールする必要があります。
$ npm install poemkit
または、リポジトリのクローンを作成して、ビルド スクリプトを含むすべてのソース ファイルを取得します。
$ git clone git://github.com/xizon/ poemkit .git
ステップ 2.まず、絶対パスを使用して" poemkit /"
フォルダー ディレクトリに移動します。
$ cd /{your_directory}/ poemkit
ステップ 3.すべての開発作業を行う前に、 Node 10+
がインストールされていることを確認してください。その後、メイン ディレクトリで次のコードを実行して、ノード モジュールの依存関係をインストールします。
$ npm install
現在のテスト環境は「Node 18+」、「npm 9+」です。依存関係のインストールが失敗した場合 (通常、Nodejs バージョンをアップグレードし、現在 Node 18+ にテストされていることが原因です)、新しいバージョンの npm が古いバージョンの npm と競合する可能性があります。次のコマンドを使用して依存関係をインストールしてください。$ npm install --legacy-peer-depsそれでもインストールが失敗する場合は、次の方法を使用してください:
package.json
内のdevDependency 、 dependency 、およびpeerDependencyを削除し、ファイルpackage-lock.json
を削除して、依存関係を再インストールします。$ npm install --save-dev @testing-library/jest-dom @testing-library/[email protected] @types/react @typescript-eslint/eslint-plugin @typescript-eslint/parser babel-loader clean-webpack-plugin cross-env css-loader css-minimizer-webpack-plugin eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-react file-loader glslify-loader html-loader html-webpack-plugin identity-obj-proxy include-file-webpack-plugin jest jsdom jest-environment-jsdom json-loader log-timestamp mime-types mini-css-extract-plugin sass nodemon postcss prettier prettier-loader random-string raw-loader [email protected] safe-buffer sass-loader style-loader tar terser-webpack-plugin ts-jest ts-node tsconfig-paths typescript webpack webpack-cli webpack-dev-middleware webpack-dev-server $ npm install @babel/core @babel/node @babel/plugin-proposal-class-properties @babel/plugin-transform-runtime @babel/polyfill @babel/preset-env @babel/preset-flow @babel/preset-react @babel/preset-typescript @babel/register axios babel-plugin-module-resolver compression cors express ignore-styles moment [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
ステップ 4.一般的に使用されるコマンド:
アプリケーションをデバッグします。コンパイルやパッケージ化の動作を行わずに、TypeScript として個別にチェックできます。
$ npm run check
Webpack を使用してファイルをバンドルするには。
$ npm run build
ローカル テストとコード インスペクションのために次のコマンドを実行します。サーバーが稼働していることがわかります。 (Express サーバーのみを実行します。) Ctrl + C
使用して停止します。
$ npm run dev
ステップ 5.完了すると、次の場所でアクセスできるサーバーが起動します。
http://localhost:3000
新しいコードは、デバッグ前にバンドルすることをお勧めします。
ステップ 6 (オプション)。ノードサーバーをホスティングサーバーにデプロイする
デプロイする前にビルド コマンドを実行してください。 (Node権限が原因で動作しない場合は、次のコマンドを使用してください)
$ npm run deploy
既存のデプロイメントを停止する
$ npm run destroy
ステップ 7 (オプション)。単体テスト
$ npm run test
注記:
a) エラー: npm 更新チェックに失敗しました。
解決:
$ sudo chown -R $USER : $( id -gn $USER ) /Users/{username}/.configb) エラー: ノード sass バージョン 6.xx は ^ 4.xx と互換性がありません
解決:
$ npm install [email protected]c) Node のバージョンをアップグレードする場合は、次のコードを実行してください。
$ npm install $ npm rebuild node-sass
PM2 をサービスとして使用して Reactjs アプリケーションを開始します (Node v13.9.0 以降を使用している場合にのみ機能します)。
Node14+ バージョンはここにインストールされます
$ curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash -
$ sudo yum install nodejs
$ node --version # v14.16.1
$ npm --version # 6.14.12
$ which node babel-node # check the location of node and babel-node
$ sudo npm install pm2@latest -g
$ sudo npm install -g babel-cli
$ sudo npm install -g @babel/core @babel/cli @babel/preset-env
$ sudo npm install -g typescript ts-node
$ sudo pm2 install typescript
# into your `" poemkit /"` folder directory.
$ cd /{your_directory}/ poemkit
# run app
$ pm2 start ecosystem.config.js
# Detect available init system, generate configuration and enable startup system, and you can check the status of the same using
$ pm2 startup
$ systemctl status pm2-root
$ pm2 start /{your_directory}/ poemkit /ecosystem.config.js --restart-delay=3000
$ pm2 save
# other commands
$ pm2 restart ecosystem.config.js
$ pm2 stop ecosystem.config.js
$ pm2 delete ecosystem.config.js
$ pm2 list
$ pm2 logs
クラウド サーバー上で NPM または PM2 を使用してアプリケーションをデプロイするときに発生する可能性がある問題の解決策をいくつか示します。
a)エラー: 権限が拒否されました。「/usr/lib/node_modules」にアクセスします
解決:
chmod -R a+x node_modulesb)エラー: JavaScript ヒープがメモリ不足です
V8 のメモリ使用量には、手動で増加しない場合、最大 1GB (32 ビット) および最大 1.7GB (64 ビット) という厳しい標準制限があります。
解決:
export NODE_OPTIONS=--max_old_space_size=4096
c) エラー: EACCES: アクセス許可が拒否されました。mkdir '/root/.pm2/xxxx'
解決:
一般に、
NPM
使用して PM2 コマンドを実行することは避けてください。まだ次のことを試すことができます。
PM2 をデーモンなしモード (pm2 kill) で起動する前に、必ず PM2 インスタンスを強制終了してください。
# re-install PM2 (optional) sudo npm i -g pm2 # if pm2 was reinstalled, ts-node must be reinstalled (optional) sudo npm install -g ts-node@latest # clear all pm2 instances pm2 kill # then restart it pm2 start xxxxxx
ここで基本的な React アプリを作成したら、Apache または Nginx Web サーバーに React アプリをデプロイする必要があります。プロキシの設定に関するチュートリアルについては、ネットワークを参照してください。
アプリをデプロイする準備ができたので、Nginx 側を準備する必要があります。 Nginx がインストールされていない場合は、次の 2 つのコマンドを実行することで、apt パッケージング システムを使用して簡単にインストールできます。
$ sudo apt update
$ sudo apt install nginx
または
$ sudo yum install nginx -y
Nginx を起動します。
$ systemctl start nginx
ブート時に開始します。
$ systemctl enable nginx
CentOS 8 で FirewallD を使用してファイアウォールをセットアップする:
$ firewall-cmd --permanent --zone=public --add-service=http
$ firewall-cmd --permanent --zone=public --add-service=https
$ firewall-cmd --permanent --zone=public --add-port=3000/tcp
$ firewall-cmd --reload
$ systemctl restart nginx
Nginx がシステム上で実行されているかどうかを確認できます。
$ systemctl status nginx
Nginx サービスが正常に実行を開始したので、 /etc/nginx/conf.d/default.conf
にある設定ファイルを変更できます。ここで、正しい React アプリケーションを起動するようにドメインを指定します。
$ vi /etc/nginx/conf.d/default.conf
ファイルの最後に次を追加します。
server {
listen 443 ssl ;
server_name backend1.example.com ;
...
location / {
proxy_set_header Host $http_host ;
proxy_pass http://{YOUR_IP}:3000 ;
}
}
これらの行をファイルに追加した後、Nginx サービスを再起動する必要があります。
$ systemctl restart nginx
サービスが正常に再起動された場合は、おそらくメッセージは表示されません。そうしないと、数行のエラー メッセージが吐き出されます。
ファイル./src/server/app.js
を変更し、 https.createServer([options][, requestListener]) を使用してエクスプレス サービスをラップします。以下のサンプル コードを確認してください。
import path from 'path' ;
import https from 'https' ;
const cert = fs . readFileSync ( path . join ( __dirname , '../../path/bundle.crt' ) ) ;
const key = fs . readFileSync ( path . join ( __dirname , '../../path/ca.key' ) ) ;
const server = https . createServer ( { key : key , cert : cert } , app ) ;
...
app . get ( '/' , ( req , res ) => { res . send ( 'this is an secure server' ) } ) ;
...
server . listen ( port , ( ) => console . log ( `Frontend service listening on port: ${ port } , access https://localhost: ${ port } in the web browser` ) ) ;
webpack.config.js
内で開発ビルドと運用ビルドの間の曖昧さをなくすために、環境変数を使用できます。
OS X と Windows の両方を検討したい場合は、サードパーティ ツールの Cross-env を使用できます。
ステップ 1.コマンドを実行して、cross-env をインストールします。
$ npm install --save-dev cross-env
ステップ 2.さらに、スクリプト内のファイルpackage.json
で、実稼働バージョンのアセンブリ Webpack 用の既製のコマンドを指定します。
"scripts" : {
"dev" : " cross-env NODE_ENV=development nodemon --require ignore-styles --exec ts-node -r tsconfig-paths/register ./src/server/server.js " ,
"build" : " cross-env NODE_ENV=production webpack --progress --mode production "
}
ここで、cross-env を通じて変数と値NODE_ENV=xxx
を設定し、Webpack の実行中にこの変数を取得します。
ステップ 3.さらに設定ファイルwebpack.config.js
で、このチェックをオブジェクト プロセスから適用し、さらにプロパティ env を変数NODE_ENVに適用してみましょう。
if ( process . env . NODE_ENV === 'production' ) {
// .. тwe apply (or add) some kind of plugin
}
デフォルトのテンプレート./src/client/views/_html/index.html
を変更します。 ./public/index.html
として自動的に生成されます。これには、React Helmet が使用する必要がある HTML タグが含まれています。例:
<!DOCTYPE html >
< html {{helmetHtmlAttributes}} >
< head >
< meta charset =" utf-8 " />
{{helmetTitle}}
<!-- manifest.json provides metadata used when your web app is added to the
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
============================================= -->
< link rel =" manifest " href =" @@{website_root_directory}/manifest.json " />
<!-- Mobile Settings
============================================= -->
< meta name =" viewport " content =" width=device-width, initial-scale=1, maximum-scale=1 " />
<!-- Mobile Settings end -->
<!-- Compatibility
============================================= -->
< meta http-equiv =" X-UA-Compatible " content =" IE=edge " />
<!-- Compatibility end -->
<!-- Core & Theme CSS
============================================= -->
< link rel =" stylesheet " href =" @@{website_root_directory}/dist/css/ poemkit .min.css?ver=@@{website_hash} " />
<!-- Core & Theme CSS end -->
<!-- Overwrite Font Files
*
* The fonts extracted with `mini-css-extract-plugin` may not load correctly
* Font files in `dist/fonts/` are fetched automatically by `file-loader`, you can configure webpack.config.js to name them.
============================================= -->
< style >
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 900;
font-display: $fa-font-display;
src: url('@@{website_root_directory}/dist/fonts/fa-solid-900.eot');
src: url('@@{website_root_directory}/dist/fonts/fa-solid-900.eot?#iefix') format('embedded-opentype'),
url('@@{website_root_directory}/dist/fonts/fa-solid-900.woff2') format('woff2'),
url('@@{website_root_directory}/dist/fonts/fa-solid-900.woff') format('woff'),
url('@@{website_root_directory}/dist/fonts/fa-solid-900.ttf') format('truetype'),
url('@@{website_root_directory}/dist/fonts/fa-solid-900.svg#fontawesome') format('svg');
}
.fa,
.fas {
font-family: 'Font Awesome 5 Free';
font-weight: 900;
}
@font-face {
font-family: 'Font Awesome 5 Brands';
font-style: normal;
font-weight: 400;
font-display: $fa-font-display;
src: url('@@{website_root_directory}/dist/fonts/fa-brands-400.eot');
src: url('@@{website_root_directory}/dist/fonts/fa-brands-400.eot?#iefix') format('embedded-opentype'),
url('@@{website_root_directory}/dist/fonts/fa-brands-400.woff2') format('woff2'),
url('@@{website_root_directory}/dist/fonts/fa-brands-400.woff') format('woff'),
url('@@{website_root_directory}/dist/fonts/fa-brands-400.ttf') format('truetype'),
url('@@{website_root_directory}/dist/fonts/fa-brands-400.svg#fontawesome') format('svg');
}
.fab {
font-family: 'Font Awesome 5 Brands';
font-weight: 400;
}
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 400;
font-display: $fa-font-display;
src: url('@@{website_root_directory}/dist/fonts/fa-regular-400.eot');
src: url('@@{website_root_directory}/dist/fonts/fa-regular-400.eot?#iefix') format('embedded-opentype'),
url('@@{website_root_directory}/dist/fonts/fa-regular-400.woff2') format('woff2'),
url('@@{website_root_directory}/dist/fonts/fa-regular-400.woff') format('woff'),
url('@@{website_root_directory}/dist/fonts/fa-regular-400.ttf') format('truetype'),
url('@@{website_root_directory}/dist/fonts/fa-regular-400.svg#fontawesome') format('svg');
}
.far {
font-family: 'Font Awesome 5 Free';
font-weight: 400;
}
</ style >
<!-- Overwrite Font Files end -->
<!-- SEO
============================================= -->
{{helmetMeta}}
{{helmetLink}}
< meta name =" generator " content =" @@{website_generator} " />
< meta name =" author " content =" @@{website_author} " />
<!-- SEO end -->
<!-- Favicons
============================================= -->
< link rel =" icon " href =" @@{website_root_directory}/assets/images/favicon/favicon-32x32.png " type =" image/x-icon " />
< link rel =" shortcut icon " href =" @@{website_root_directory}/assets/images/favicon/favicon-32x32.png " sizes =" 32x32 " />
< link rel =" apple-touch-icon " href =" @@{website_root_directory}/assets/images/favicon/apple-touch-icon-57x57.png " />
< link rel =" apple-touch-icon " sizes =" 72x72 " href =" @@{website_root_directory}/assets/images/favicon/apple-touch-icon-72x72.png " />
< link rel =" apple-touch-icon " sizes =" 114x114 " href =" @@{website_root_directory}/assets/images/favicon/apple-touch-icon-114x114.png " />
<!-- Favicons end -->
</ head >
< body {{helmetBodyAttributes}} >
< noscript >
You need to enable JavaScript to run this app.
</ noscript >
< div id =" app " > {{reactApp}} </ div >
<!-- Your Plugins & Theme Scripts
============================================= -->
< script >
var REVISION = "@@{website_version}" ,
APP_ROOTPATH = {
"templateUrl" : "@@{website_root_directory}" , //If the file is in the root directory, you can leave it empty. If in another directory, you can write: "/blog" (but no trailing slash)
"homeUrl" : "" , //Eg. https://uiux.cc
"ajaxUrl" : "" //Eg. https://uiux.cc/wp-admin/admin-ajax.php
} ;
</ script >
< script > window . __PRELOADED_STATE__ = { { preloadedState } } ; </ script >
< script src =" @@{website_root_directory}/dist/js/ poemkit .min.js?ver=@@{website_hash} " > </ script >
<!-- Your Plugins & Theme Scripts end -->
</ body >
</ html >
./public/manifest.json
ファイルは、 ./src/config/tmpl-manifest.json
に基づいて自動的に生成されます。
webpack.config.js
にsolveを追加することで、モジュールの解決を構成できます。別のモジュールをインポートするときに相対パスを使用すると、すべての相対パスを把握する必要があるため、面倒になります。したがって、エイリアスを追加して自分で使いやすくすることができます。
webpack.config.js
:
...
const alias = {
pathConfig : './src/config' ,
pathComponents : './src/client/components' ,
pathRouter : './src/client/router' ,
pathHelpers : './src/client/helpers' ,
pathServices : './src/client/services' ,
pathReducers : './src/client/reducers' ,
pathPages : './src/client/views/_pages' ,
pathActions : './src/client/actions' ,
pathServer : './src/server' ,
pathStore : './src/store'
} ;
...
resolve : {
extensions : [ '.js' , '.jsx' , '.ts' , '.tsx' , '.scss' , '.sass' ] ,
alias : {
// specific mappings.
// Supports directories and custom aliases for specific files when the express server is running,
// you need to configure the `babel.config.js` and `tsconfig.json` at the same time
'@/config' : path . resolve ( __dirname , alias . pathConfig ) ,
'@/components' : path . resolve ( __dirname , alias . pathComponents ) ,
'@/router' : path . resolve ( __dirname , alias . pathRouter ) ,
'@/helpers' : path . resolve ( __dirname , alias . pathHelpers ) ,
'@/services' : path . resolve ( __dirname , alias . pathServices ) ,
'@/reducers' : path . resolve ( __dirname , alias . pathReducers ) ,
'@/pages' : path . resolve ( __dirname , alias . pathPages ) ,
'@/actions' : path . resolve ( __dirname , alias . pathActions ) ,
'@/server' : path . resolve ( __dirname , alias . pathServer ) ,
'@/store' : path . resolve ( __dirname , alias . pathStore ) ,
}
} ,
...
babel.config.js
:
...
"plugins" : [
[ "module-resolver" , {
"root" : [ "./src" ] ,
"alias" : {
"@/config" : "./src/config" ,
"@/components" : "./src/client/components" ,
"@/router" : "./src/client/router" ,
"@/helpers" : "./src/client/helpers" ,
"@/services" : "./src/client/services" ,
"@/reducers" : "./src/client/reducers" ,
"@/pages" : "./src/client/views/_pages" ,
"@/actions" : "./src/client/actions" ,
"@/server" : "./src/server" ,
"@/store" : "./src/store"
}
} ]
]
. . .
tsconfig.json
:
{
"compilerOptions" : {
"baseUrl" : " ./src " ,
"paths" : {
"@/config/*" : [ " config/* " ],
"@/components/*" : [ " client/components/* " ],
"@/router/*" : [ " client/router/* " ],
"@/helpers/*" : [ " client/helpers/* " ],
"@/services/*" : [ " client/services/* " ],
"@/reducers/*" : [ " client/reducers/* " ],
"@/pages/*" : [ " client/views/_pages/* " ],
"@/actions/*" : [ " client/actions/* " ],
"@/server/*" : [ " server/* " ],
"@/store/*" : [ " store/* " ]
}
}
}
package.json
:
{
"jest" : {
"testEnvironment" : " jsdom " ,
"moduleNameMapper" : {
" \ .(css|less|scss|sass)$" : " identity-obj-proxy " ,
"^@/config/(.*)" : " <rootDir>/src/config/$1 " ,
"^@/components/(.*)" : " <rootDir>/src/client/components/$1 " ,
"^@/router/(.*)" : " <rootDir>/src/client/router/$1 " ,
"^@/helpers/(.*)" : " <rootDir>/src/client/helpers/$1 " ,
"^@/services/(.*)" : " <rootDir>/src/client/services/$1 " ,
"^@/reducers/(.*)" : " <rootDir>/src/client/reducers/$1 " ,
"^@/pages/(.*)" : " <rootDir>/src/client/views/_pages/$1 " ,
"^@/actions/(.*)" : " <rootDir>/src/client/actions/$1 " ,
"^@/server/(.*)" : " <rootDir>/src/server/$1 " ,
"^@/store/(.*)" : " <rootDir>/src/store/$1 "
},
"transform" : {
"^.+ \ .(js|jsx)$" : " babel-jest " ,
"^.+ \ .(ts|tsx)?$" : " ts-jest "
}
}
}
webpack.config.js
にある出力を使用して、モジュール タイプや名前空間などのライブラリに関連する設定を構成します。
...
const globs = {
port : 8080 ,
examples : 'public' ,
build : 'src/client' ,
dist : 'dist'
} ;
...
output : {
path : path . resolve ( __dirname , './' + globs . dist + '/js' ) ,
filename : '[name].js'
} ,
...
package.json
のサイト情報構成を変更することで、テンプレートのプレースホルダーを更新できます。このような:
{
"author" : " UIUX Lab " ,
"name" : " poemkit " ,
"email" : " [email protected] " ,
"version" : " 1.0.0 " ,
"projectName" : " poemkit " ,
"createdInfo" : " UIUX Lab (https://uiux.cc) " ,
"projectURL" : " https://uiux.cc " ,
"description" : " React toolkit for building a full website that also is a Micro-Frontend Architecture " ,
...
}
Web サイトのプライマリ ナビゲーションでもあるルートの構成 (プライマリ ナビゲーションのページで構成されるネストされたルートの構成は含まれません)。 ./src/client/router/RoutesConfig.js
へのアクセス。
ルーターの一部のスクリプトは、ファイル./src/client/router/App.js
で変更できます。
サーバー側の一部のスクリプトは、ファイル./src/server/renderer.js
で変更できます。
サーバーと React アプリケーションの両方を同時に実行するにはpackage.json
にproxy
キーを追加する必要があります。サーバーがポート 3000 で実行されるようにすでに設定されているため、プロキシをlocalhost:3000
に指定します。
{
"proxy" : " http://localhost:3000 " ,
...
}
PropTypes
使用して型を確認します。 $ npm run dev
次に、次の JavaScript コードを使用してデバッグできます。ターミナルにエラーおよび警告メッセージを表示します。
import PropTypes from "prop-types" ;
import React , { Component } from 'react' ;
export default class YourComponentName extends Component {
public static propTypes = { } ;
constructor ( props ) {
super ( props ) ;
}
render ( ) { ... }
}
if ( process . env . NODE_ENV === 'development' ) {
YourComponentName . propTypes = {
displayEnable : PropTypes . bool . isRequired ,
htmlString : PropTypes . oneOfType ( [ PropTypes . string , PropTypes . object ] )
}
}
アプリケーションはデフォルトでいくつかのサードパーティ ライブラリ (アイコン、アニメーション、3D エンジンなど) をロードします。必要に応じてそれらをロードしたり、構成ファイルを変更したりできます。 ./src/client/components/_plugins/
へのアクセス
サードパーティのプラグインはデフォルトでカスタム コンポーネントとともに使用されますが、削除することもできます。
プロジェクトを別のディレクトリにアップロードするときに使用できるように、Web サイトのルート ディレクトリを変更します。 ./src/config/websiteConfig.js
のキーrootDirectory
変更します。
ファイルがルート ディレクトリにある場合は、空のままにすることができます。別のディレクトリにある場合は、「/blog」と記述できます。 (末尾のスラッシュはありません)
{
"rootDirectory" : " "
}
サイト アドレス (URL) は通常、SEO の最適化に使用されます。 ./src/config/websiteConfig.js
のキーsiteUrl
変更します。 URL の名前はhttps://domain-name.com
(末尾のスラッシュとサブディレクトリはありません)
{
"siteUrl" : " "
}
WebサイトのAPI URLを変更します。以下に示すように、 ./src/config/websiteConfig.js
のキーAPI
変更します。
{
"API" : {
"RECEIVE_DEMO_LIST" : " https://apiurl1.com " ,
"RECEIVE_DEMO_LISTDETAIL" : " https://apiurl2.com "
}
}
バグの発見、プルリクエストの送信、ドキュメントの改善など、あらゆる貢献を歓迎し、高く評価します。まずは、貢献ガイドラインにアクセスしてください。ありがとう!
リリース
クロム | Firefox | 角 | IE | サファリ | オペラ | iOS | アンドロイド |
---|---|---|---|---|---|---|---|
>= 49 | >= 45 | >=14 | >=11 | >= 9 | >= 30 | >=10 | >=4.4 |
MIT の下でライセンスを取得しています。