Contribute to the DSpace Development Fund

The newly established DSpace Development Fund supports the development of new features prioritized by DSpace Governance. For a list of planned features see the fund wiki page.

Workshop/training materials available

Update June 2017: A DSpace Angular UI workshop was held at OR2017. This workshop provided an basic overview of the Angular framework, along with hands-on exercises for all attendees. All workshop materials are available online at: OR2017 DSpace Angular Workshop.

The new DSpace UI is being implemented on the widely used Angular client side framework. In addition to delivering a more responsive user experience,  client side frameworks allow for a more rapid development cycle. The UI code is built in TypeScript, a typed super set of JavaScript, that was developed specifically for the implementation of sizable web applications. In fact Angular itself is developed in TypeScript.

The UI works with the DSpace REST API to access and modify data. It relies on RxJS  to manage control flow which is driven by the (asynchronous) communication between the two applications The @ngrx package helps maintain a predictable state representation.

The new UI uses Angular Universal to render initial page requests on the server side,  which greatly improves the initial page load time. As a nice benefit, search engines requesting pages do not have to deal with client side page rendering. Crawlers working through a list of URLs will always be presented with a page rendered on the server.

Node.js is the server technology used with JavaScript web application and thus with Angular.  As an asynchronous event driven JavaScript runtime, Node is designed to build scalable network applications like web based user interfaces. 

Npm stands for Node Package Manager. In fact installation instruction for the user interface at GitHub essentially consist of the command 'npm install',  followed by 'npm start' to start a local server.

Typescript

Angular

Other Packages

Node.js and Npm

Angular Universal

Additional DSpace 7 Resources

  • No labels

2 Comments

  1. Should this be changed from Angular 2 to Angular 4?

    1. Justin Coyne: eventually, yes. But, currently we are still building off of Angular 2, as some Angular 2 packages/modules that we use still haven't been updated to support Angular 4. Once those packages do so, the plan is to update to using Angular 4 as soon as possible. In the meantime, we probably should update our language here to just say Angular.