mirror of
				https://kkgithub.com/actions/setup-node.git
				synced 2025-11-04 12:46:16 +08:00 
			
		
		
		
	Add auth support (#21)
* Updates * Update * Update * Update * Update * Yarn sometimes prefers npmrc, so use same token * Description * Update readme * Feedback * Add type * new toolkit and scoped registries * npmrc in RUNNER_TEMP * Dont always auth * Try exporting blank token * Get auth working for now pending runner changes * Fix string interpolation for auth token. * Don't export both userconfigs * Update authutil.js * Add single quotes for authString * Fix the registry string. * Use userconfig and append trailing slash * Keep in root of repo * Try just adding auth token * Remove auth token * Try changes again * Add tests * Npm and GPR samples * Add types
This commit is contained in:
		
							
								
								
									
										37
									
								
								node_modules/btoa-lite/README.md
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								node_modules/btoa-lite/README.md
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							@ -0,0 +1,37 @@
 | 
			
		||||
# btoa-lite
 | 
			
		||||

 | 
			
		||||

 | 
			
		||||

 | 
			
		||||

 | 
			
		||||
 | 
			
		||||
Smallest/simplest possible means of using btoa with both Node and browserify.
 | 
			
		||||
 | 
			
		||||
In the browser, encoding base64 strings is done using:
 | 
			
		||||
 | 
			
		||||
``` javascript
 | 
			
		||||
var encoded = btoa(decoded)
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
However in Node, it's done like so:
 | 
			
		||||
 | 
			
		||||
``` javascript
 | 
			
		||||
var encoded = new Buffer(decoded).toString('base64')
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
You can easily check if `Buffer` exists and switch between the approaches
 | 
			
		||||
accordingly, but using `Buffer` anywhere in your browser source will pull
 | 
			
		||||
in browserify's `Buffer` shim which is pretty hefty. This package uses
 | 
			
		||||
the `main` and `browser` fields in its `package.json` to perform this
 | 
			
		||||
check at build time and avoid pulling `Buffer` in unnecessarily.
 | 
			
		||||
 | 
			
		||||
## Usage
 | 
			
		||||
 | 
			
		||||
[](https://nodei.co/npm/btoa-lite/)
 | 
			
		||||
 | 
			
		||||
### `encoded = btoa(decoded)`
 | 
			
		||||
 | 
			
		||||
Returns the base64-encoded value of a string.
 | 
			
		||||
 | 
			
		||||
## License
 | 
			
		||||
 | 
			
		||||
MIT. See [LICENSE.md](http://github.com/hughsk/btoa-lite/blob/master/LICENSE.md) for details.
 | 
			
		||||
		Reference in New Issue
	
	Block a user