1 ---
2 title: orgs
3 section: 7
4 description: Working with Teams & Orgs
5 github_repo: npm/cli
6 github_branch: release/v6
7 github_path: docs/content/using-npm/orgs.md
8 redirect_from:
9 - /cli-documentation/v6/misc/orgs
10 - /cli-documentation/v6/using-npm/orgs
11 - /cli/v6/misc/orgs
12 ---
13
14 ### Description
15
16 There are three levels of org users:
17
18 1. Super admin, controls billing & adding people to the org.
19 2. Team admin, manages team membership & package access.
20 3. Developer, works on packages they are given access to.
21
22 The super admin is the only person who can add users to the org because it impacts the monthly bill. The super admin will use the website to manage membership. Every org has a `developers` team that all users are automatically added to.
23
24 The team admin is the person who manages team creation, team membership, and package access for teams. The team admin grants package access to teams, not individuals.
25
26 The developer will be able to access packages based on the teams they are on. Access is either read-write or read-only.
27
28 There are two main commands:
29
30 1. `npm team` see [npm team](/cli/v6/commands/npm-team) for more details
31 2. `npm access` see [npm access](/cli/v6/commands/npm-access) for more details
32
33 ### Team Admins create teams
34
35 - Check who you’ve added to your org:
36
37 ```bash
38 npm team ls <org>:developers
39 ```
40
41 - Each org is automatically given a `developers` team, so you can see the whole list of team members in your org. This team automatically gets read-write access to all packages, but you can change that with the `access` command.
42
43 - Create a new team:
44
45 ```bash
46 npm team create <org:team>
47 ```
48
49 - Add members to that team:
50
51 ```bash
52 npm team add <org:team> <user>
53 ```
54
55 ### Publish a package and adjust package access
56
57 - In package directory, run
58
59 ```bash
60 npm init --scope=<org>
61 ```
62
63 to scope it for your org & publish as usual
64
65 - Grant access:
66
67 ```bash
68 npm access grant <read-only|read-write> <org:team> [<package>]
69 ```
70
71 - Revoke access:
72
73 ```bash
74 npm access revoke <org:team> [<package>]
75 ```
76
77 ### Monitor your package access
78
79 - See what org packages a team member can access:
80
81 ```bash
82 npm access ls-packages <org> <user>
83 ```
84
85 - See packages available to a specific team:
86
87 ```bash
88 npm access ls-packages <org:team>
89 ```
90
91 - Check which teams are collaborating on a package:
92
93 ```bash
94 npm access ls-collaborators <pkg>
95 ```
96
97 ### See also
98
99 - [npm team](/cli/v6/commands/npm-team)
100 - [npm access](/cli/v6/commands/npm-access)
101 - [npm scope](/cli/v6/using-npm/scope)