
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
@514labs/igloo-cli
Advanced tools
The Igloo CLI is your entrypoint to a seamless, local development experience for you data-intensive application. It's written in rust and supports building applications in TypeScript and Python.
The Igloo CLI is your entrypoint to a seamless, local development experience for you data-intensive application. It's written in rust and supports building applications in TypeScript and Python.
Before getting started you'll need to install some dependencies on your machine:
The Igloo CLI is available as an NPM or Pip package. To install the CLI, run the following command:
npm install -g @igloo-kit/cli
The Igloo CLI is a command-line tool that allows you to create, manage, and deploy your Igloo applications.
To create a new application, run the following command:
igloo init
This will prompt you to enter a name for your application. Once you have entered a name, the CLI will create a new directory with the name you provided and scaffold out a new Igloo application.
The CLI will create the following files and directories:
├── .igloo
│ ├── .clickhouse
│ ├── .redpanda
│ └── ...
├── .gitignore
├── README.md
├── package.json or requirements.txt
├── app
│ ├── index.ts or index.py
│ ├── dataframes
│ │ └── ...
│ ├── flows
│ │ └── ...
│ ├── ingests
│ │ └── ...
│ ├── insights
│ │ ├── dashboards
│ │ ├── metrics
│ │ ├── models
│ │ └── ...
│ └── utils
app
directoryThe app
directory contains all of the code for your application. This includes all of the dataframes, flows, ingests, and insights that make up your application. This directory is where you will spend most of your time developing your application.
.igloo
for contributors onlyThe .igloo
directory contains all of the configuration files for an application. This includes configuration for the local state of the application as well as any required local infrastructure. This directory is only used by contributors to the application and should not be committed to source control. Modifying files in this directory may cause unexpected behavior.
To run your application, run the following command:
igloo dev
This will start all of the required infrastructure and run your application in development mode. You can now make changes to your application and see them reflected in real-time.
Once your application is running, you can see it in action by navigating to the following URLs:
The console is a great way to see the data flowing through your application. It allows you to see the data flowing through your application in real-time and interact with the objects you've created. You can also use the console to run queries against your application's data.
FAQs
The Igloo CLI is your entrypoint to a seamless, local development experience for you data-intensive application. It's written in rust and supports building applications in TypeScript and Python.
We found that @514labs/igloo-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.