如何使用Android手机运行TypeScript程序?是否有任何应用程序可用于在Android上离线运行TypeScript程序?
eulz3vhy1#
您可以使用Termux在Android上运行TypeScript程序。按照以下步骤在Termux中运行TypeScript。1.从Play商店安装Termux应用程序。1.使用命令pkg install nodejs在termux中安装 Node.js 包1.使用命令npm install typescript在Termux上安装TypeScript节点模块1.使用pkg install micro命令安装像Micro这样的代码编辑器。您还可以使用任何代码编辑器应用程序,如Acode或Spck。1.使用命令micro hello.ts创建TypeScript文件这将打开一个编辑器,您可以在其中编写TypeScript代码。如果您使用外部代码编辑器应用程序编写程序,请将Termux的工作目录更改为您保存TypeScript程序的文件夹。1.编写完TypeScript代码后,回到终端并输入tsc hello.ts,这将把TypeScript编译为JavaScript,并在同一目录下创建hello.js文件。1.现在您可以使用命令node hello.js运行JavaScript文件,它将显示代码的输出。对于快捷方式,您可以合并步骤6和7命令,并像tsc hello.ts && node hello.js一样使用它
pkg install nodejs
npm install typescript
pkg install micro
micro hello.ts
tsc hello.ts
node hello.js
tsc hello.ts && node hello.js
ddrv8njm2#
安装termux时,请尝试使用f-droid包管理器安装termux,而不是使用Google Play商店,如下所示https://wiki.termux.com/wiki/Installing_from_F-Droid
6ovsh4lw3#
您必须从F-droid安装Termux,因为Google Play Store版本已经过时,很快就会被删除,创建者仍在GitHub上开发termux
3条答案
按热度按时间eulz3vhy1#
您可以使用Termux在Android上运行TypeScript程序。按照以下步骤在Termux中运行TypeScript。
1.从Play商店安装Termux应用程序。
1.使用命令
pkg install nodejs
在termux中安装 Node.js 包1.使用命令
npm install typescript
在Termux上安装TypeScript节点模块1.使用
pkg install micro
命令安装像Micro这样的代码编辑器。您还可以使用任何代码编辑器应用程序,如Acode或Spck。1.使用命令
micro hello.ts
创建TypeScript文件这将打开一个编辑器,您可以在其中编写TypeScript代码。如果您使用外部代码编辑器应用程序编写程序,请将Termux的工作目录更改为您保存TypeScript程序的文件夹。1.编写完TypeScript代码后,回到终端并输入
tsc hello.ts
,这将把TypeScript编译为JavaScript,并在同一目录下创建hello.js文件。1.现在您可以使用命令
node hello.js
运行JavaScript文件,它将显示代码的输出。对于快捷方式,您可以合并步骤6和7命令,并像
tsc hello.ts && node hello.js
一样使用它ddrv8njm2#
安装termux时,请尝试使用f-droid包管理器安装termux,而不是使用Google Play商店,如下所示https://wiki.termux.com/wiki/Installing_from_F-Droid
6ovsh4lw3#
您必须从F-droid安装Termux,因为Google Play Store版本已经过时,很快就会被删除,创建者仍在GitHub上开发termux