净核心vs节点js您应该选择什么

We start a series of blogs where we are going to compare the trendiest programming languages to help you choose the best technology for your project.

我们开始创建一系列博客,在这些博客中,我们将比较最流行的编程语言,以帮助您为项目选择最佳技术。

The first battle is going to be between .NET Core and Node.js. These are two renowned, publicly available development environments that scale, fasten, speed up, and empower the development process. Both .NET Core and Node.js have pros and cons, and each is better with every release. When it comes to the choice, the crucial point is the project needs.

第一个战役将在.NET Core和Node.js之间进行。 这是两个著名的,公开可用的开发环境,它们可以扩展,固定,加速并授权开发过程。 .NET Core和Node.js都有优点和缺点,并且每个版本都更好。 当涉及到选择时,关键点是项目需求。

For instance, Node.js is considered to provide a wide diversity of the tools that are free of charge. On the contrary .NET Core is thought to be a limited environment because of the Microsoft tag. However, these are just assumptions that do not reveal a complete picture.

例如,Node.js被认为提供了许多免费的工具。 相反,由于Microsoft标签,.NET Core被认为是受限制的环境。 但是,这些只是假设,并不能说明全部情况。

We want to reassure you that both programming platforms offer an awesome range of features that meet performance requirements. Let’s see what development environment is best for your business or project.

我们想向您保证,两个编程平台都提供了满足性能要求的出色功能。 让我们看看哪种开发环境最适合您的业务或项目。

ASP.NET与Node.js:基础 (ASP.NET vs Node.js: The basics)

Node.js (Node.js)

As an alternative to Apache HTTP Server, Node.js was created for Apple’s and Linux operating systems. By being a JavaScript-based language Node.js is used for backend and frontend development and can be used with any JavaScript compliable language.

作为Apache HTTP Server的替代,Node.js是为Apple和Linux操作系统创建的。 通过成为基于JavaScript的语言,Node.js用于后端和前端开发,并且可以与任何JavaScript兼容语言一起使用。

Within packages, you can find modules (code that has been prewritten) that allows you to cope with programming faster. You can find approximately a million packages within the Node.js repository. To easily secure new dependencies you can use an automatic lock-file mechanism.

在软件包中,您可以找到模块(已预先编写的代码),这些模块使您可以更快地应对编程。 您可以在Node.js存储库中找到大约一百万个软件包。 为了轻松保护新的依赖关系,可以使用自动锁定文件机制。

.NET核心 (.NET Core)

In this aspect .NET Core is totally different, as it is based on C# and is solely used for .NET projects. .NET Core allows developers to use various languages like F# or C++.

在这方面,.NET Core完全不同,因为它基于C#,并且仅用于.NET项目。 .NET Core允许开发人员使用各种语言,例如F#或C ++。

.NET libraries incorporate prewritten code, so that data structures were supported. It also has different libraries for encryption, security, and database access. The class libraries are used to render graphics, interact with databases, and deal with XML.

.NET库包含预编写的代码,因此支持数据结构。 它还具有用于加密,安全性和数据库访问的不同库。 类库用于渲染图形,与数据库交互以及处理XML。

There’s also NuGet, a package management tool that tracks and saves versions and updates within dynamic link libraries and handles dependency chains during package installation.

还有NuGet ,一个软件包管理工具,该工具可以在动态链接库中跟踪和保存版本和更新,并在软件包安装过程中处理依赖项链。

异步和同步处理模型:Node.js与ASP.NET (Asynchronous and synchronous processing models: Node.js vs ASP.NET)

ASP.NET and Node.js have utterly different processing models.

ASP.NET和Node.js具有完全不同的处理模型。

Node.js (Node.js)

Being an asynchronous platform, Node.js server handles multiple requests simultaneously and doesn’t block them. While the code is executed in the main thread, it spawns on different threads to perform other tasks. This is a secret to efficient and lightweight solutions even if the app must be heavily loaded with data.

作为一个异步平台,Node.js服务器可以同时处理多个请求,并且不会阻止它们。 在主线程中执行代码时,它会在不同的线程上生成以执行其他任务。 这是高效轻便的解决方案的秘诀,即使该应用程序必须大量加载数据。

.NET (.NET)

On the contrary, ASP.NET is synchronous by nature and has multiple threads which means that every request is processed one by one within its own thread. The drawback here is that in case there are no free threads left for new tasks, they must wait for a free one. What’s more, building more threads isn’t an answer, because it requires a lot of memory.

相反,ASP.NET本质上是同步的,并且具有多个线程,这意味着每个请求都在其自己的线程中一个接一个地处理。 这里的缺点是,如果没有空闲线程可用于新任务,则它们必须等待空闲线程。 而且,构建更多线程不是解决方案,因为它需要大量内存。

ASP.NET Core与Node.js 社区支持 (ASP.NET Core vs Node.js. community support)

Both development environments can boast having active and strong community support which ultimately means it won’t be burdensome to find a solution to the problem. However, keep in mind that .NET has more community support on Stack Overflow whereas Node.js is supported more via GitHub. The best example is the Stack Overflow question and answer website that has around 4 million registered users.

两种开发环境都可以拥有积极而强大的社区支持,这最终意味着找到解决问题的方法不会很麻烦。 但是,请记住,.NET在Stack Overflow上提供了更多社区支持,而Node.js在GitHub上得到了更多支持。 最好的例子是Stack Overflow问答网站,该网站拥有大约400万注册用户。

平台支援 (Platform support)

Node.js (Node.js)

Node.js runs on multiple platforms and this attribute makes Node.js an attractive platform. Node.js is officially supported by Windows, Linux, macOS, SmartOS, FreeBSD and IBM AIX.

Node.js在多个平台上运行,并且此属性使Node.js成为有吸引力的平台。 Windows,Linux,macOS,SmartOS,FreeBSD和IBM AIX正式支持Node.js。

.NET (.NET)

Being solely Windows platform based before 2018, .NET went through a transformation and now it runs on Linux and macOS too.

.NET是2018年之前的唯一基于Windows平台的平台,它经历了一次转型,现在也可以在Linux和macOS上运行。

可扩展性 (Scalability)

Node.js (Node.js)

Node.js is perfectly designed for distributed systems. Microservices-based software enables components to scale autonomously which prevents an app from falling apart due to its weight. As more and more enterprises prefer to develop the software on top of microservices, Node.js has gained tremendous popularity among businesses like eBay, Netflix, Twitter, Uber, and others.

Node.js是为分布式系统完美设计的。 基于微服务的软件使组件能够自动扩展,从而防止应用因其重量而崩溃。 随着越来越多的企业倾向于在微服务之上开发软件,Node.js在eBay,Netflix,Twitter,Uber等企业中获得了极大的欢迎。

.NET核心 (.NET Core)

.NET Core is also a very scalable platform. It uses monolithic architecture which means adding more machines will help you to scale up.

.NET Core还是一个非常可扩展的平台。 它使用单片式架构,这意味着添加更多计算机将有助于您扩展规模。

ASP.NET Core与Node.js的性能 (ASP.NET Core vs Node.js performance)

Due to the asynchronous model, Node.js apps have high performance without being too heavy in comparison to other solutions. According to Nodejs.org, 48% of companies identified increased app performance when they switched to Node.js.

由于采用了异步模型,Node.js应用程序具有高性能,而与其他解决方案相比却不会太繁重。 根据Nodejs.org的调查 ,有48%的公司发现切换到Node.js时可以提高应用程序的性能。

Image for post

However, other tests showcase that ASP.NET has better performance than Node.js.

但是, 其他测试表明,ASP.NET的性能优于Node.js。

There’s no final victory here, as it depends upon the structure and the purpose of the application which leads us back to asynchronous and synchronous processing models.

这里没有最终的胜利,因为它取决于应用程序的结构和目的,这使我们回到异步和同步处理模型。

稳定性,可靠性和安全性 (Stability reliability and security)

ASP.NET is definitely a winner in this category. The security and reliability the platform provides make it a great option to create robust software with C# language. Node.js is more reliable for complex enterprise software developed with TypeScript than on its own.

ASP.NET绝对是该类别的赢家。 该平台提供的安全性和可靠性使其成为使用C#语言创建功能强大的软件的绝佳选择。 对于使用TypeScript开发的复杂企业软件,Node.js比单独使用更为可靠。

使用Node.js的优点 (Pros of using Node.js)

  • Node.js has been regarded as a full-stack JavaScript for serving both the client and the server-side applications. The advantage is that you don’t need to hire two engineers (for backend as well as the front-end) development. It preserves budget and time.

    Node.js被视为用于服务于客户端和服务器端应用程序的完整JavaScript。 好处是您不需要雇用两个工程师(用于后端和前端)开发。 它可以节省预算和时间。
  • Node.js interprets the JavaScript code via Google’s V8 JavaScript engine. It compiles JavaScript code into the machine code(directly). This makes it easier and faster to implement the code.

    Node.js通过Google的V8 JavaScript引擎解释JavaScript代码。 它将JavaScript代码直接编译为机器代码。 这样可以更轻松,更快地实现代码。
  • Speed of the code execution also enhanced by runtime environment as it supports the non-blocking I/O operations.

    运行时环境还提高了代码执行速度,因为它支持非阻塞I / O操作。
  • Latest versions of Node.js are strongly overlaping with the development of V8. With V8, JavaScript code is converted to byte code for use in a VMs.

    最新版本的Node.js与V8的开发紧密重叠。 使用V8,JavaScript代码将转换为字节代码以在VM中使用。

使用.NET Core的优点 (Pros of using .NET Core)

  • The most important benefit of ASP.NET Core framework is its high performance. With recent updates the code gets much more optimized which improves performance at the very end.

    ASP.NET Core框架最重要的好处是它的高性能。 通过最近的更新,代码得到了更加优化,从而最终提高了性能。
  • .NET Core demands less coding now, developers can easily optimize the code-structure by means of writing much lesser statements. That ends up with less time spent on development and smaller budgets which puts .NET Core very close to Node.js in terms of development speed.

    .NET Core现在需要更少的代码,开发人员可以通过编写更少的语句轻松地优化代码结构。 最后,开发时间减少了,预算也减少了,这使.NET Core在开发速度上非常接近Node.js。
  • Maintaining a large .Net Core application is much more easier comparing to Node.js.

    与Node.js相比,维护大型.Net Core应用程序要容易得多。
  • .NET Core is easier to get it to work and work WELL. It puts you, as a developer, into a certain limits which are very precise, yet very flexible when you approach things in a right way.

    .NET Core更容易使其正常运行。 当您以正确的方式处理问题时,它使您(作为开发人员)处于某些限制中,这些限制非常精确,但也非常灵活。

使用Node.js的公司 (Companies using Node.js)

Many big names armed their products with Node.js. Netflix, PayPal,Medium, eBay. Node.js is very popular among start-ups as it allows you to build products faster and cheaper, especially on early stages of the product.

许多知名企业使用Node.js武装他们的产品。 Netflix,PayPal,Medium,eBay。 Node.js在新兴企业中非常受欢迎,因为它使您可以更快,更便宜地构建产品,尤其是在产品的早期阶段。

使用.NET Core的公司 (Companies using .NET Core)

Dell, Stack Overflow, Intel, Intuit, Cisco, Morgan Stanley, Siemens and many more are using .NET Core for enterprise application development for years.

多年来,戴尔,Stack Overflow,英特尔,Intuit,思科,摩根士丹利,西门子等公司都在使用.NET Core进行企业应用程序开发。

您如何做出正确的决定? (How do you make the right decision?)

Node.js vs .NET Core? If you know the type of app or software you want to develop it will be easier for you to choose the solution. If you still have doubts, give inVerita a hint and we will help you to make the right decision based on your project requirements.

Node.js与.NET Core? 如果您知道要开发的应用程序或软件的类型,则可以轻松选择解决方案。 如果您仍然有疑问,请给inVerita一个提示,我们将帮助您根据项目要求做出正确的决定。

Originally published at inveritasoft.com on September 8, 2020

最初于 2020 年9月8日 发布在 inveritasoft.com

翻译自: https://medium.com/@inverita/net-core-vs-node-js-what-should-you-choose-3d7a96cd40

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是一个获取 el-tree 所有子节点的 demo: ```html <template> <el-tree :data="data" :props="defaultProps"> <span class="custom-tree-node" slot-scope="{ node, data }"> {{ data.label }} <el-button @click="getAllChildren(node)">获取子节点</el-button> </span> </el-tree> </template> <script> export default { data() { return { data: [ { label: "一级 1", children: [ { label: "二级 1-1", children: [ { label: "三级 1-1-1" }, { label: "三级 1-1-2" } ] }, { label: "二级 1-2", children: [ { label: "三级 1-2-1" }, { label: "三级 1-2-2" } ] } ] }, { label: "一级 2", children: [ { label: "二级 2-1", children: [ { label: "三级 2-1-1" }, { label: "三级 2-1-2" } ] }, { label: "二级 2-2", children: [ { label: "三级 2-2-1" }, { label: "三级 2-2-2" } ] } ] } ], defaultProps: { children: "children", label: "label" } }; }, methods: { getAllChildren(node) { console.log(node.childNodes); } } }; </script> ``` 在这个 demo 中,我们通过给每个节点添加一个按钮,来触发获取子节点的操作。具体实现方式是在 el-tree 中添加一个 slot,并为按钮绑定一个点击事件,点击事件中调用 `getAllChildren` 方法,方法中获取当前节点的所有子节点并打印到控制台中。 这个 demo 的核心代码如下: ```html <span class="custom-tree-node" slot-scope="{ node, data }"> {{ data.label }} <el-button @click="getAllChildren(node)">获取子节点</el-button> </span> ``` ```javascript getAllChildren(node) { console.log(node.childNodes); } ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值