我在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文件)
有些想法我该如何手动安装存储库?