在没有互联网的情况下安装NodeJS存储库

时间:2018-09-20 06:58:00

标签: node.js npm npm-install

我在Linux红帽服务器上有一个项目,需要运行nodeJS。但是,服务器没有互联网连接。 public object Convert(object value, Type targetType, object parameter, string language) { var isError = value as bool? ?? false; if (isError) { if (App.SelectedTheme == ElementTheme.Light) { return Application.Current.Resources["MyBorderBrushMandatory"] as SolidColorBrush; } else { return Application.Current.Resources["MyBorderBrushMandatoryDark"] as SolidColorBrush; } } else { return null; } } <TextBox PlaceholderText="My PlaceholderText" Height="100" Width="500" HorizontalAlignment="Center" Style="{StaticResource NoHighlightTextBoxStyle}" BorderBrush="{Binding IsError, Converter={StaticResource BorderBrushColorConverter}}" VerticalAlignment="Center" ></TextBox> 已安装。

我尝试使用NodeJS在本地计算机上创建NPM文件并将其手动上传到服务器,但是无法在服务器上与npm pack一起安装。 (尽管命令指向.tgz文件)

有些想法我该如何手动安装存储库?

0 个答案:

没有答案