Can I make a client/server Task Manager using only JavaScript?

时间:2016-04-07 10:26:20

标签: javascript node.js server client taskmanager

My current project is to make an open source web-based KBTM (Knowledge Base Task Manager) for a large company. This company has an Active Directory database where it has all of its employees' usernames and passwords. My task manager has to connect to this database because the user has to log in with his credentials to use my application. Depending on the user's rank within the company, the application will have more or less features.

Can I make this KBTM using only JavaScript? I heard of Node.js for using JavaScrip on the server side. Is this viable? Or is there a better way of doing this that is open source?

Thank you so much for any help.

1 个答案:

答案 0 :(得分:2)

NodeJs是编写服务器后端的一个选项,在我看来,如果你喜欢javascript,它是一个很棒的选项。

使用节点,您可以轻松满足您的要求。

这里有一些文章为什么要选择节点: link1 link2

此外,NodeJs还附带了一个名为npm的优秀包管理器。

使用npm,您可以轻松安装数百万个可以节省大量时间的开源软件包。