{"id":16293575,"url":"https://github.com/badsyntax/sass-wrapper","last_synced_at":"2025-04-09T11:13:35.672Z","repository":{"id":9151724,"uuid":"10945476","full_name":"badsyntax/sass-wrapper","owner":"badsyntax","description":"[deprecated/not maininted] A nodejs module that provides a friendly javascript API for interacting with sass","archived":false,"fork":false,"pushed_at":"2014-06-13T14:30:11.000Z","size":236,"stargazers_count":2,"open_issues_count":1,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-15T05:15:01.245Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/badsyntax.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-MIT","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-06-25T17:47:43.000Z","updated_at":"2014-08-17T17:21:08.000Z","dependencies_parsed_at":"2022-09-08T09:51:09.812Z","dependency_job_id":null,"html_url":"https://github.com/badsyntax/sass-wrapper","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fsass-wrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fsass-wrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fsass-wrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fsass-wrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/badsyntax","download_url":"https://codeload.github.com/badsyntax/sass-wrapper/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248027412,"owners_count":21035594,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-10-10T20:11:46.430Z","updated_at":"2025-04-09T11:13:35.655Z","avatar_url":"https://github.com/badsyntax.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sass-wrapper [![Build Status](https://travis-ci.org/badsyntax/sass-wrapper.png?branch=master)](https://travis-ci.org/badsyntax/sass-wrapper)\n\nA nodejs module that provides a friendly javascript API for compiling sass. This module is simply a wrapper\naround the sass utility, and thus you need to have sass installed on your system to use this module.\n\n** THIS MODULE IS DEPRECATED AND NOT MAINTAINED **\n\n## Example\n\n```javascript\nvar sass = require('sass-wrapper');\n\n// You can specify a filepath to compile...\nsass.compile({\n\tfilepath: 'styles.scss',\n\tcallback: function(err, data) {\n\t\tif (err) {\n\t\t\tconsole.log(err);\n\t\t\tthrow err;\n\t\t}\n\t\tconsole.log(data);\n\t}\n});\n\n// Or pass in a string of sass...\nsass.compile({\n\tdata: '.mysass{.important{color:red;}}',\n\ttype: 'scss', // {optional} 'scss' or 'sass' (defaults to 'scss')\n\tcallback: function(err, data) {\n\t\tif (err) {\n\t\t\tconsole.log(err);\n\t\t\tthrow err;\n\t\t}\n\t\tconsole.log(data);\n\t}\n});\n```\n\n## Options\n\n```javascript\n{\n\tfilepath: '/path/to/file.scss',\n\tdata: '.mysass{.style{color:red}}',\n\ttype: 'scss',\n\tcompass: true,\n\tstyle: 'nested',\n\tprecision: 3,\n\tloadPath: '/path/to/dir'\n}\n```\n\n## Tests\n\nRun the tests with `npm test` or `grunt test`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbadsyntax%2Fsass-wrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbadsyntax%2Fsass-wrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbadsyntax%2Fsass-wrapper/lists"}