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

aproject-erp-fe-lib

v1.4.7

Published

aproject-erp-fe-lib < https://www.npmjs.com/package/aproject-erp-fe-lib >

Downloads

359

Readme

aproject-erp-fe-lib < https://www.npmjs.com/package/aproject-erp-fe-lib >

  1. aproject-erp-fe 프로젝트에서 터미널 창을 열고 "npm uninstall aproject-erp-fe-lib" 실행
  2. aproject-erp-fe 프로젝트 package.json에 dependencies 밑에 "aproject-erp-fe-lib" 제거되었는지 확인
  3. 제거되었다면 aproject-erp-fe-lib 프로젝트 root에 있는 index.js 파일 편집
    1. module.exports = require('./lib/index') -> module.exports = require('./src/index');
    2. /src/index.js 파일에 테스트 할 class가 export 되어있는지 확인
  4. 2,3번이 완료되면 aproject-erp-fe 프로젝트에서 터미널 창을 열고 "npm install --save ../aproject-erp-fe-lib" 실행
  5. aproject-erp-fe 프로젝트 package.json에 dependencies 밑에 "aproject-erp-fe-lib"가 아래와 같이 'file:'이 포함되어 추가되었는지 확인
    • "aproject-erp-fe-lib": "file:../aproject-erp-fe-lib",
  6. 이제 aproject-erp-fe 프로젝트에서 aproject-erp-fe-lib 클래스를 바로바로 별도 빌드없이 참조가 가능하다!
  1. 배포할 branch를 checkout 한다.
  2. 만약, 위에서 서술된 것 처럼 local 테스트를 위해 ./lib/index -> ./src/index 로 변경하였다면 꼭 Rollback 한다.
  3. package.json 의 version 을 변경한다.
    1. 만약 첫 배포라면?
      1. npm login 을 통하여 로그인 프로세스를 진행한다.( 선임 직책자들에게 접근권한이 있으니 문의하자. )
      2. Npmjs 에 로그인 하기 위해서는 id, pw, email 3가지 정보가 필요하다.(계정 :dl_npm_admin)
  4. npm run build:publish 를 진행한다
    1. npm install -> babel build -> npm publish 의 과정이 진행된다.
  5. 배포 끝
  6. package.json / package-lock.json 에 변경사항을 꼭 target branch 에 push 한다.
    1. 배포 commit 메시지는 "deploy version {version}" 으로 하면 좋다.
  7. 배포 버전을 팀원들에게 공유한다.