⭐ Axway Amplify utility to find root directory of Appcelerator Titanium SDK project


Keywords
axway, appcelerator, titanium, mobile, turbo, sdk, plugin, amplify, api-builder, appcelerator-titanium, titanium-sdk, titanium-mobile, titanium-module, titanium-alloy, axway-sdk, axway-amplify, brenton-house, axway-plugin, directory, find
License
MIT
Install
npm install tiapp-dir@1.0.43

Documentation

Axway Amplify End-of-Life Announcement

👇   See API FAQ below   👇

RIP Axway Amplify Titanium (2010 - 2022)

ðŸŠĶ   RIP Axway Amplify Titanium (2010 - 2022)

ðŸŠĶ   RIP Axway Amplify Cloud Services (2012 - 2022)


🛑    All products affected by the announcements will not be supported by Axway effective their EOL dates in 2022.

Some Open-Source versions of Axway products will live on after End-of-Life (EOL) Axway Amplify product announcements. However, some products are closed-source and will NOT continue after the shut down in 2022.

 

👉    Stay tuned for more info as plans are being made to save the Titanium project and move it under the control of a independent group of developers.

 


API FAQ:

 


 

 

tiapp-dir

tiapp-dir version tiapp-dir downloads tiapp-dir dependencies

Find the root directory of an appcelerator titanium project

(based on https://github.com/sindresorhus/pkg-dir)

Install

$ npm install --save tiapp-dir

Install NPM version

$ npm install--save tiapp-dir

Usage

/
└── projects
    └── appcelerator
        └── mobilehero-demo
            ├── package.json
            ├── tiapp.xml
            └── foo
                ├── aaa.js
                ├── package.json
                └── bar
                    ├── bbb.js
                    ├── ccc.js
                    └── example.js
// example.js
var tiappDir = require('tiapp-dir');

tiappDir(__dirname).then(function (rootPath) {
	console.log(rootPath);
	//=> '/projects/appcelerator/mobilehero-demo'
});

API

tiappDir([cwd])

Returns a promise that resolves to the project root path or null.

tiappDir.sync([cwd])

Returns the project root path or null.

cwd

Type: string
Default: process.cwd()

Directory to start from.

Related

  • pkg-dir - Find the root directory of a npm package
  • pkg-up - Find the closest package.json file
  • find-up - Find a file by walking up parent directories

License

The MIT License (MIT)

Copyright (c) 2016 Superhero Studios Incorporated

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.