{"id":26891655,"url":"https://github.com/iocss/crossass-inspector","last_synced_at":"2026-04-28T08:33:11.317Z","repository":{"id":14618696,"uuid":"17336019","full_name":"iocss/crossass-inspector","owner":"iocss","description":"A better variable inspection library for Sass (mixin / function).","archived":false,"fork":false,"pushed_at":"2016-10-04T19:42:31.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-26T23:58:52.726Z","etag":null,"topics":["css","debug","development","function","functions","inspect","inspection","library","mixin","mixins","sass"],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iocss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-03-02T11:05:16.000Z","updated_at":"2019-02-13T11:05:40.000Z","dependencies_parsed_at":"2022-08-31T09:12:04.418Z","dependency_job_id":null,"html_url":"https://github.com/iocss/crossass-inspector","commit_stats":null,"previous_names":["whizark/crossass-inspector"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/iocss/crossass-inspector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iocss%2Fcrossass-inspector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iocss%2Fcrossass-inspector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iocss%2Fcrossass-inspector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iocss%2Fcrossass-inspector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iocss","download_url":"https://codeload.github.com/iocss/crossass-inspector/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iocss%2Fcrossass-inspector/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32310804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T19:15:34.056Z","status":"ssl_error","status_checked_at":"2026-04-26T19:15:15.467Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","debug","development","function","functions","inspect","inspection","library","mixin","mixins","sass"],"created_at":"2025-03-31T22:41:07.688Z","updated_at":"2026-04-26T19:31:30.083Z","avatar_url":"https://github.com/iocss.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Crossass Inspector\n\nA Sass mixin / function library for better variable inspection in development.\n\n![Crossass Inspector](http://raw.github.com/whizark/crossass-inspector/master/crossass-inspector.png)\n\n## Requirement\n\n* [Sass](http://sass-lang.com/) 3.3.0+\n\n## Installation\n\n```sh\nbower install crossass-inspector\n```\n\nor just copy ```crossass-inspector``` folder into your project.\n\n## Usage\n\n### Import\n\n```scss\n// For development environment\n@import 'bower_components/crossass-inspector/scss/environment/development';\n\n// For production environment\n//@import 'bower_components/crossass-inspector/scss/environment/production';\n\n@import 'bower_components/crossass-inspector/scss/inspector';\n```\n\nor\n\n```scss\n// For development environment\n@import 'your-folder/crossass-inspector/scss/environment/development';\n\n// For production environment\n// @import 'your-folder/crossass-inspector/scss/environment/production';\n\n@import 'your-folder/crossass-inspector/scss/inspector';\n```\n\n### Inspection\n\n```scss\n$variable: (\n    number                : 1,\n    string                : 'string',\n    bool                  : true,\n    color                 : white,\n    'null'                : null,\n    space-separated-list  : (1 2 3),\n    comma-separated-list  : (1, 2, 3),\n    list-in-list          : (1 (a b c) ),\n    map                   : (a: 1, b: 2, c: 3),\n    list-in-map           : (a: (1 2 3) ),\n    map-in-map            : (A: (a: 1, b: 2, c: 3) )\n);\n\n.inspection {\n    @include x-inspect($variable);\n}\n```\n\nCompiling with Sass, it outputs debug information.\n\n```\nDEBUG: (map) (\nDEBUG:     number: (number) 1\nDEBUG:     string: (string) string\nDEBUG:     bool: (bool) true\nDEBUG:     color: (color) white\nDEBUG:     null: (null)\nDEBUG:     space-separated-list: (list) (\nDEBUG:         (number) 1\nDEBUG:         (number) 2\nDEBUG:         (number) 3\nDEBUG:     )\nDEBUG:     comma-separated-list: (list) (\nDEBUG:         (number) 1\nDEBUG:         (number) 2\nDEBUG:         (number) 3\nDEBUG:     )\nDEBUG:     list-in-list: (list) (\nDEBUG:         (number) 1\nDEBUG:         (list) (\nDEBUG:             (string) a\nDEBUG:             (string) b\nDEBUG:             (string) c\nDEBUG:         )\nDEBUG:     )\nDEBUG:     map: (map) (\nDEBUG:         a: (number) 1\nDEBUG:         b: (number) 2\nDEBUG:         c: (number) 3\nDEBUG:     )\nDEBUG:     list-in-map: (map) (\nDEBUG:         a: (list) (\nDEBUG:             (number) 1\nDEBUG:             (number) 2\nDEBUG:             (number) 3\nDEBUG:         )\nDEBUG:     )\nDEBUG:     map-in-map: (map) (\nDEBUG:         A: (map) (\nDEBUG:             a: (number) 1\nDEBUG:             b: (number) 2\nDEBUG:             c: (number) 3\nDEBUG:         )\nDEBUG:     )\nDEBUG: )\n```\n\n## Variables\n\nVariable | Type | Description\n--- | --- | ---\n$x-inspector-environment | String | The environment string\n$x-inspector-debug | Bool | Whether output debug information using ```@debug```\n$x-inspector-toolbar | Bool | Whether show toolbar on screen\n$x-inspector-toolbar-position | String | The toolbar position (```top```, ```bottom```)\n$x-inspector-indent-size | Number | The indent size (space) for the variable inspection\n\n## Environment\n\n### Development\n\nVariable | Default value\n--- | ---\n$x-inspector-environment | 'development'\n$x-inspector-debug | true\n$x-inspector-toolbar | true\n$x-inspector-toolbar-position | 'bottom'\n$x-inspector-indent-size | 4\n\n### Production\n\nVariable | Default value\n--- | ---\n$x-inspector-environment | 'production'\n$x-inspector-debug | false\n$x-inspector-toolbar | false\n$x-inspector-toolbar-position | 'bottom'\n$x-inspector-indent-size | 4\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiocss%2Fcrossass-inspector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiocss%2Fcrossass-inspector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiocss%2Fcrossass-inspector/lists"}