mirror of
				https://github.com/n8n-io/n8n-nodes-starter.git
				synced 2025-10-31 07:12:25 -05:00 
			
		
		
		
	Small tweaks to README and updated icon example (#76)
This commit is contained in:
		
					parent
					
						
							
								c6c8bb68b2
							
						
					
				
			
			
				commit
				
					
						e863c55657
					
				
			
		
					 2 changed files with 5 additions and 2 deletions
				
			
		|  | @ -6,12 +6,14 @@ This repo contains example nodes to help you get started building your own custo | ||||||
| 
 | 
 | ||||||
| To make your custom node available to the community, you must create it as an npm package, and [submit it to the npm registry](https://docs.npmjs.com/packages-and-modules/contributing-packages-to-the-registry). | To make your custom node available to the community, you must create it as an npm package, and [submit it to the npm registry](https://docs.npmjs.com/packages-and-modules/contributing-packages-to-the-registry). | ||||||
| 
 | 
 | ||||||
|  | If you would like your node to be available on n8n cloud you can also [submit your node for verification](https://docs.n8n.io/integrations/creating-nodes/deploy/submit-community-nodes/). | ||||||
|  | 
 | ||||||
| ## Prerequisites | ## Prerequisites | ||||||
| 
 | 
 | ||||||
| You need the following installed on your development machine: | You need the following installed on your development machine: | ||||||
| 
 | 
 | ||||||
| * [git](https://git-scm.com/downloads) | * [git](https://git-scm.com/downloads) | ||||||
| * Node.js and pnpm. Minimum version Node 20. You can find instructions on how to install both using nvm (Node Version Manager) for Linux, Mac, and WSL [here](https://github.com/nvm-sh/nvm). For Windows users, refer to Microsoft's guide to [Install NodeJS on Windows](https://docs.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows). | * Node.js and npm. Minimum version Node 20. You can find instructions on how to install both using nvm (Node Version Manager) for Linux, Mac, and WSL [here](https://github.com/nvm-sh/nvm). For Windows users, refer to Microsoft's guide to [Install NodeJS on Windows](https://docs.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows). | ||||||
| * Install n8n with: | * Install n8n with: | ||||||
|   ``` |   ``` | ||||||
|   npm install n8n -g |   npm install n8n -g | ||||||
|  |  | ||||||
|  | @ -5,7 +5,7 @@ export class HttpBin implements INodeType { | ||||||
| 	description: INodeTypeDescription = { | 	description: INodeTypeDescription = { | ||||||
| 		displayName: 'HttpBin', | 		displayName: 'HttpBin', | ||||||
| 		name: 'httpBin', | 		name: 'httpBin', | ||||||
| 		icon: 'file:httpbin.svg', | 		icon: { light: 'file:httpbin.svg', dark: 'file:httpbin.svg' }, | ||||||
| 		group: ['transform'], | 		group: ['transform'], | ||||||
| 		version: 1, | 		version: 1, | ||||||
| 		subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}', | 		subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}', | ||||||
|  | @ -15,6 +15,7 @@ export class HttpBin implements INodeType { | ||||||
| 		}, | 		}, | ||||||
| 		inputs: [NodeConnectionType.Main], | 		inputs: [NodeConnectionType.Main], | ||||||
| 		outputs: [NodeConnectionType.Main], | 		outputs: [NodeConnectionType.Main], | ||||||
|  | 		usableAsTool: true, | ||||||
| 		credentials: [ | 		credentials: [ | ||||||
| 			{ | 			{ | ||||||
| 				name: 'httpbinApi', | 				name: 'httpbinApi', | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue