
Security News
High Salaries No Longer Enough to Attract Top Cybersecurity Talent
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
create-world
Advanced tools
Add a short introduction here.
const world = createWorld({}) const generatedTiles = generateArea(world)({ x: 1, y: 0 })
npm
npm install create-world
yarn
yarn add create-world
Mud-world:
const TileType = {
WATER: 'water',
MUD: 'mud',
}
const FeatureType = {
LOG: 'log',
}
const world = createWorld({
// order matters since resulting tiles will be first type matched
tiles: [
{ type: TileType.WATER, noiseMax: -0.3 },
// default tile so that something is always matched
{ type: TileType.MUD },
],
features: [
{
type: FeatureType.LOG,
tileTypesAllowed: [TileType.MUD],
likelihood: 5,
},
],
})
Command | Description |
---|---|
yarn build | Generate files in the dist folder |
yarn release | Start the process to release a new version |
yarn typecheck | Run a type check with typescript |
yarn lint | Lint with eslint |
yarn clean | Remove build artefact (.tgz file) |
yarn build-test | Builds, packs and installs to example folder |
yarn build-test
and verify that your changes work.master
or make PR
yarn release:prepare
- Sets up your library for releaseyarn release
FAQs
---
The npm package create-world receives a total of 7 weekly downloads. As such, create-world popularity was classified as not popular.
We found that create-world demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.