HEX
Server: LiteSpeed
System: Linux houston.panomity.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: nudepix (1011)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //lib/node_modules/nextjs/Readme.md
# Next  
Because asynchronous calls suck out your brain without a proper async handler. This one is just 4 lines yet it solves a huge issue.

### Install
```config
	npm install nextjs
```

### How it works?
1. Create a `Next Instance`: `var next = new Next(2, finish)`
2. Then you call `next()` as many times as you specified in the `count`. In this example it is *2*.
3. After `next` was called *2 times*, the `finish` function will be called.

### Example
```javascript
	// Include
	var Next = require('nextjs');
	
	// CREATE a Next Instance
	var next = new Next(2, finish);
	
	// Log Start
	console.log('start');
	
	// Will happen after 5 seconds passed
	setTimeout(function(){ console.log('A'); next(); }, 5000); 
	
	// Will happen after 2 seconds passed
	setTimeout(function(){ console.log('B'); next(); }, 2000); 
	
	// Will happen in the end after 5 seconds passed
	function finish(){ console.log('finished'); } 
	
	// output result
	// 0 second => start
	// 2 second => B
	// 5 second => A
	// 5 second => finished
```

## Next parameters
- **count**: the number of times you will have to call the `next()` instance. `required` `integer`
- **finish**: finishing callback `required` `function`

## Key features
- It's just 4 lines - `0.16kb`
- Easy to use
- Its part of `dietjs`