Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gideros

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gideros

Gideros file system based - powered by nodejs

  • 0.9.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

gideros Build Status Coverage Status

Gideros file system based - powered by nodejs

Usage

Installing

npm install -g gideros

Using

Run this command in terminal:

gideros /path/to/your/gideros/project-name

How does it work

Gideros Node server will watch all files in project-name directory then generate gideros configuration file [project-name].gproj (called compile process). The compiler will do the following tasks:

  • Update folder and file by mapping with file system.
  • Detect and remove invalid dependency.
  • Keep all other configurations like properties.
  • Keep watching and compiling all file changes in your project-name.

File changes include:

  • create, change, delete on .gideros file.
  • create, delete on all other files.

To prevent the compiler compile unwanted files, you can define excludeRegex and includeRegex in the file named .gideros at /path/to/your/gideros/project-name/.gideros using regular expression.

These are all valid configuration for .gideros file which used in MashballsClone game:

{
  "includeRegex": false,
  "excludeRegex": [
    "^\\.[^\\.]*", 
    ".gproj$", 
    "LICENSE", 
    "README.md", 
    "^texturepacks/sources/", 
    "^texturepacks/LevelScene/"
  ]
}
{
  "includeRegex": false,
  "excludeRegex": "^\\.[^\\.]*|.gproj$|LICENSE|README.md|^texturepacks/sources/|^texturepacks/LevelScene/"
}
{
  "includeRegex": ".lua$",
  "excludeRegex": "^\\.[^\\.]*|.gproj$|LICENSE|README.md|^texturepacks/sources/|^texturepacks/LevelScene/"
}
{
  "includeRegex": [
    ".lua$"
  ],
  "excludeRegex": "^\\.[^\\.]*|.gproj$|LICENSE|README.md|^texturepacks/sources/|^texturepacks/LevelScene/"
}

Note:

  • If you define includeRegex, only matched directories are compiled.
  • excludedRegex has higher priority than includeRegex.

Gideros alternative editors

FINALLY, HAPPY CODING

License

MIT - Copyright (c) 2015 HenryTao.

Keywords

FAQs

Package last updated on 08 Mar 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc