
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
guestline-scripts
Advanced tools
This package includes a set of scripts that makes configuring a project easier. It uses the eslint-config-guestline. It includes built in test runner.
This package includes a set of scripts that makes configuring a project easier. It uses the eslint-config-guestline. It includes built in test runner.
|_ build
|_ src
| |_ client
| |_ server
|_ .env
|_ .gitignore
|_ package.json
If you want to see the linting in your IDE, create a file named .eslintrc with following contents in the root folder of your project:
{
"extends": "guestline"
}
That's it!
However, if you are using Guestline Scripts, any additional rules will only be displayed in the IDE, but not in the browser or the terminal.
We are running tests using Jest. All documentation can be found here.
To run tests, add a new script in your package.json:
{
"scripts": {
"test": "guestline-scripts test --env=jsdom"
}
}
Remove --env=jsdom if you do not run tests that need a document - e.g. node tests.
By default running tests runs the watcher with interactive CLI. However, you can force it to run tests once and finish the process by setting an environment variable called CI.
Popular CI servers already set the environment variable CI by default but you can do this yourself too:
set CI=true&&npm test
(Note: the lack of whitespace is intentional.)
($env:CI = $true) -and (npm test)
CI=true npm test
If your app uses a browser API that you need to mock in your tests or if you just need a global setup before running your tests, add a src/setupTests.js to your project. It will be automatically executed before running your tests.
For example:
const localStorageMock = {
getItem: jest.fn(),
setItem: jest.fn(),
clear: jest.fn()
};
global.localStorage = localStorageMock;
You can run your Next.js application using our simplified scripts. It's super easy to setup:
npm i -S next
yarn add next
This is in the src/client that your pages folder will be located.
Create your server.js in the src folder:
const path = require('path');
const next = require('next');
const express = require('express');
const nextApp = next({
dev: process.env.NODE_ENV !== 'production'
dir: path.join(__dirname, 'client'),
conf: require('guestline-scripts/next/config')
});
const handle = nextApp.getRequestHandler();
nextApp.prepare().then(() => {
const app = express();
app.set('port', parseInt(process.env.PORT, 10) || 2000);
app.get('*', (req, res) => {
return handle(req, res);
});
app.listen(app.get('port'), err => {
if (err) throw err;
console.log(`> Ready on http://localhost:${app.get('port')}`);
});
});
"scripts": {
"build": "guestline-scripts build",
"start": "guestline-scripts start",
"start:prod": "cross-env NODE_ENV=production guestline-scripts start"
}
Customize the port your application will be running on by declaring a PORT variable:
PORT=3001 guestline-scripts start
You can use your own config or extend ours by creating a src/client/next.config.js file.
This file should follow the Next.js documentation.
Remember to use your own config in your server.js too.
FAQs
This package includes a set of scripts that makes configuring a project easier. It uses the eslint-config-guestline. It includes built in test runner.
The npm package guestline-scripts receives a total of 0 weekly downloads. As such, guestline-scripts popularity was classified as not popular.
We found that guestline-scripts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.