npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

talent-find

v1.0.0

Published

TalentFind - Powered by OHR

Downloads

1

Readme

OHR DOH Track

Abu Dhabi’s Health Workforce Management System, a new digital platform that allows clinical staff from across the UAE to volunteer their support or work full or part-time at the emirate’s healthcare sector, by registering online through the portal and highlighting their key skill sets to provide support to the sector’s facilities in the emirate during the COVID-19 outbreak.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

You need to install the software and how to install them

Download NodeJS https://nodejs.org/en/ LTS - 12.16.2

[sudo] npm install npm -g
npm i -g @vue/cli

Installing

A step by step series of examples that tell you how to get a development env running

Go to frontend/ folder

npm install 
npm run serve

How to setup fronend development

  1. Download vs code
  2. clone the repo
  3. create a branch from doh-dev branch
    git checkout doh-dev
    git checkout -b your_dev_branch
  1. use the following naming conventions to name your branch
    1. Create a gitlab issue and get issue number
    2. Name the branch like issue/<issue_number>
  2. cd frontend
  3. ensure that .env.development file points to the staging url VUE_APP_BASE_URL=https://ohr-staging.screel.in/api/v1
  4. yarn install
  5. yarn serve
  6. Now your dev setup should be ready and you should be able to access the app at http://localhost:8080
  7. The backend will be provided by https://ohr-staging.screel.in
  8. Backend is already setup to allow CORS for port localhost:8080, if you run it on other ports you will face CORS issue
  9. We use VueJs, here are some resources you may find useful to get started with vue
    1. https://www.vuemastery.com/courses/intro-to-vue-js/vue-instance
    2. https://vuex.vuejs.org/
  10. We use the free admin template provided by core-ui, so use the CoreUi components for building the UI elements
    1. https://coreui.io/vue/docs/3.0/
    2. https://coreui.io/vue/demo/3.0-beta.1/#/dashboard
    3. https://github.com/coreui/coreui-free-vue-admin-template
  11. The code is organized like shown below
    1. src/components - has resusable Vue Components
    2. containers - this folder has the components used in page
    3. pages - this folder contains the vue template that uses components from containers and builds the final page that are rendered under a url
    4. router - has routing logic, also supports access control
    5. modules - has files related to vuex state
    6. custom styles can be added in _custom.scss
  12. Do your changes in your own branch, test it locally and then commit your changes.
  13. Create a Merge request in gitlab
  14. After review your changes will be deployed in staging https://ohr-staging.screel.in
  15. After testing in staging, the changes will be migrated to production