nadesiko3 3.3.78 → 3.3.79

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,33 +4,6 @@
4
4
  [![npm version](https://badge.fury.io/js/nadesiko3.svg)](https://www.npmjs.com/package/nadesiko3)
5
5
  ![Node.js CI](https://github.com/kujirahand/nadesiko3/workflows/Node.js%20CI/badge.svg)
6
6
 
7
- ## 関連リポジトリへのリンク
8
-
9
- - [なでしこ3開発リポジトリ(GitHub)](https://github.com/kujirahand/nadesiko3/)
10
- - [なでしこ3拡張プラグイン](https://nadesi.com/v3/doc/index.php?FAQ%2F%E6%8B%A1%E5%BC%B5%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6&show)
11
- - [nadesiko3-server](https://github.com/kujirahand/nadesiko3-server) --- Webサーバ(HTTP)
12
- - [nadesiko3-websocket](https://github.com/kujirahand/nadesiko3-websocket) --- WebSocket
13
- - [nadesiko3-office](https://github.com/kujirahand/nadesiko3-office) --- Excelなど
14
- - [nadesiko3-sqlite3](https://github.com/kujirahand/nadesiko3-sqlite3/) --- SQLite3
15
- - [nadesiko3-tools](https://github.com/kujirahand/nadesiko3-tools) --- 便利ツール
16
- - [nadesiko3-mecab](https://github.com/kujirahand/nadesiko3-mecab/) --- 形態素解析(Mecab)
17
- - [nadesiko3-htmlparser](https://github.com/kujirahand/nadesiko3-htmlparser) --- スクレイピング
18
- - [nadesiko3-ml](https://github.com/kujirahand/nadesiko3-ml/) --- 機械学習
19
- - [nadesiko3-odbc](https://github.com/kujirahand/nadesiko3-odbc) --- データベース(ODBC)
20
- - [nadesiko3-mysql](https://github.com/kujirahand/nadesiko3-mysql) --- データベースMySQL
21
- - [nadesiko3-postgresql](https://github.com/kujirahand/nadesiko3-postgresql) --- データベースPostgreSQL
22
- - [nadesiko3-mssql](https://github.com/kujirahand/nadesiko3-mssql) --- データベースmssql
23
- - 配布用パッケージ
24
- - [nadesiko3webkit - なでしこ3軽量配布キット(webkit版)](https://github.com/kujirahand/nadesiko3webkit)
25
- - [nadesiko3electron - なでしこ3フル配布キット(electron版)](https://github.com/kujirahand/nadesiko3electron)
26
- - [nadesiko3win32 - なでしこ3(コンソール版)のWindows配布パッケージ](https://github.com/kujirahand/nadesiko3win32/releases)
27
- - 実験的に別言語で実装したなでしこ3
28
- - [nadesiko3php - なでしこ3PHP](https://github.com/kujirahand/nadesiko3php)
29
- - [nadesiko3rust - なでしこ3Rust](https://github.com/kujirahand/nadesiko3rust)
30
- - [nadesiko3go - なでしこ3Go言語](https://github.com/kujirahand/nadesiko3go)
31
- - 本リポジトリのサブモジュール
32
- - [nadesiko3core](https://github.com/kujirahand/nadesiko3core/) --- 言語コア
33
-
34
7
  ## 「なでしこ3」とは
35
8
 
36
9
  「なでしこ3」とは、日本語のプログラミング言語です。HTML5/JavaScript(TypeScript)をベースとしているので、PC/スマホ/タブレットなど、さまざまな環境で動作させることができます。日本語プログラミング言語は、読みやすく理解しやすいのが特徴で、初めてでも楽しくプログラミングを覚えることができます。また、バッチ処理や定型処理などを手軽に記述できます。
@@ -97,6 +70,27 @@ cd nadesiko3
97
70
  git submodule update --init --recursive
98
71
  ```
99
72
 
73
+ ## Ubuntuへの開発環境のセットアップ
74
+
75
+ まっさらなUbuntu22.04でなでしこ3の開発環境を整える方法
76
+
77
+ ```
78
+ sudo apt update
79
+ # nvm で Node.js をインストール
80
+ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
81
+ source ~/.bashrc
82
+ nvm install v18.12.1
83
+ # リポジトリのセットアップ
84
+ git clone --recursive https://github.com/kujirahand/nadesiko3.git
85
+ cd nadesiko3
86
+ npm install
87
+ # なでしこ3のビルド
88
+ npm run build
89
+ # 『圧縮』『解凍』命令のために
90
+ sudo apt install -y p7zip-full
91
+ # cnako3をパスに追加する
92
+ ```
93
+
100
94
  ## 追加インストール(macOS/Linux)
101
95
 
102
96
  必要に応じて以下のコマンドをインストールします。
@@ -141,3 +135,30 @@ npm run test:all
141
135
 
142
136
  なでしこ3自身を開発するために、開発環境を整えようという方は、 [doc/SETUP.md](doc/SETUP.md) をご覧ください。
143
137
  また、なでしこ3開発者向けの[Gitter](https://gitter.im/nadesiko3/community)への参加も可能です。
138
+
139
+ ## 関連リポジトリへのリンク
140
+
141
+ - [なでしこ3開発リポジトリ(GitHub)](https://github.com/kujirahand/nadesiko3/)
142
+ - [なでしこ3拡張プラグイン](https://nadesi.com/v3/doc/index.php?FAQ%2F%E6%8B%A1%E5%BC%B5%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6&show)
143
+ - [nadesiko3-server](https://github.com/kujirahand/nadesiko3-server) --- Webサーバ(HTTP)
144
+ - [nadesiko3-websocket](https://github.com/kujirahand/nadesiko3-websocket) --- WebSocket
145
+ - [nadesiko3-office](https://github.com/kujirahand/nadesiko3-office) --- Excelなど
146
+ - [nadesiko3-sqlite3](https://github.com/kujirahand/nadesiko3-sqlite3/) --- SQLite3
147
+ - [nadesiko3-tools](https://github.com/kujirahand/nadesiko3-tools) --- 便利ツール
148
+ - [nadesiko3-mecab](https://github.com/kujirahand/nadesiko3-mecab/) --- 形態素解析(Mecab)
149
+ - [nadesiko3-htmlparser](https://github.com/kujirahand/nadesiko3-htmlparser) --- スクレイピング
150
+ - [nadesiko3-ml](https://github.com/kujirahand/nadesiko3-ml/) --- 機械学習
151
+ - [nadesiko3-odbc](https://github.com/kujirahand/nadesiko3-odbc) --- データベース(ODBC)
152
+ - [nadesiko3-mysql](https://github.com/kujirahand/nadesiko3-mysql) --- データベースMySQL
153
+ - [nadesiko3-postgresql](https://github.com/kujirahand/nadesiko3-postgresql) --- データベースPostgreSQL
154
+ - [nadesiko3-mssql](https://github.com/kujirahand/nadesiko3-mssql) --- データベースmssql
155
+ - 配布用パッケージ
156
+ - [nadesiko3webkit - なでしこ3軽量配布キット(webkit版)](https://github.com/kujirahand/nadesiko3webkit)
157
+ - [nadesiko3electron - なでしこ3フル配布キット(electron版)](https://github.com/kujirahand/nadesiko3electron)
158
+ - [nadesiko3win32 - なでしこ3(コンソール版)のWindows配布パッケージ](https://github.com/kujirahand/nadesiko3win32/releases)
159
+ - 実験的に別言語で実装したなでしこ3
160
+ - [nadesiko3php - なでしこ3PHP](https://github.com/kujirahand/nadesiko3php)
161
+ - [nadesiko3rust - なでしこ3Rust](https://github.com/kujirahand/nadesiko3rust)
162
+ - [nadesiko3go - なでしこ3Go言語](https://github.com/kujirahand/nadesiko3go)
163
+ - 本リポジトリのサブモジュール
164
+ - [nadesiko3core](https://github.com/kujirahand/nadesiko3core/) --- 言語コア