9 lines
		
	
	
		
			204 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			204 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const express = require('express');
 | ||
| const app = express();
 | ||
| 
 | ||
| app.use('/home/foo/bar', function (request, response) {
 | ||
|     response.status(404).send(`Ресурс не найден`);
 | ||
| });
 | ||
| 
 | ||
| app.listen(3000);
 | 
